summaryrefslogtreecommitdiff
path: root/testcases/022-cpu-usage-tenth-cpu/setup.pl
blob: ec4bca3b4ccc523a9c79d671eb306323a2ff5f77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env perl

use v5.10;
use strict;
use warnings;

if ($#ARGV != 0 || ! -d $ARGV[0]) {
    say "Error with setup script: argument not provided or not a directory";
    exit 1;
}

chomp(my $cpu_count = `grep -c -P '^processor\\s+:' /proc/cpuinfo`);
my $output_file = "$ARGV[0]/stat";
open(my $fh, '>', $output_file) or die "Could not open file '$output_file' $!";
print $fh "cpu  0 0 0 0 0 0 0 0 0 0\n";
for (my $i = 0; $i < $cpu_count; $i++) {
    print $fh "cpu$i 0 0 0 0 0 0 0 0 0 0\n";
}
close $fh;