i3status/testcases/011-cpu-usage/expected_output.pl
Emeric Planet 884e4da673 Fix CPU unit tests (#239)
Support any amount of available cores on testing machine.
2017-08-29 19:01:30 +02:00

13 lines
252 B
Perl

#!/usr/bin/env perl
use v5.10;
use strict;
use warnings;
chomp(my $cpu_count = `grep -c -P '^processor\\s+:' /proc/cpuinfo`);
if ($cpu_count == 1) {
print "all: 00% CPU_0: 00% CPU_1: \n";
} else {
print "all: 50% CPU_0: 00% CPU_1: 100%\n";
}