From d003edcba6aaf29f74b904c09fc9dfdf3b2ff2cc Mon Sep 17 00:00:00 2001 From: = <=> Date: Tue, 31 Jul 2018 00:27:13 -0500 Subject: Fix for issue 300: Correctly print usage for cpu 10 --- testcases/022-cpu-usage-tenth-cpu/setup.pl | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 testcases/022-cpu-usage-tenth-cpu/setup.pl (limited to 'testcases/022-cpu-usage-tenth-cpu/setup.pl') diff --git a/testcases/022-cpu-usage-tenth-cpu/setup.pl b/testcases/022-cpu-usage-tenth-cpu/setup.pl new file mode 100644 index 0000000..ec4bca3 --- /dev/null +++ b/testcases/022-cpu-usage-tenth-cpu/setup.pl @@ -0,0 +1,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; -- cgit v1.2.3