i3status/testcases/010-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
254 B
Perl
Executable File

#!/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: 100% CPU_0: 100% CPU_1: \n";
} else {
print "all: 75% CPU_0: 100% CPU_1: 50%\n";
}