summaryrefslogtreecommitdiff
path: root/testcases/022-cpu-usage-tenth-cpu/expected_output.pl
blob: 21482ab97004c7e62ae5301aafe3ec9f4b833301 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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 < 10) {
    print "all: 00% CPU_0: 00% CPU_10: \n";
} else {
    print "all: 00% CPU_0: 00% CPU_10: 00%\n";
}