diff options
author | Emeric Planet <emeric.planet@datadoghq.com> | 2017-08-29 19:01:30 +0200 |
---|---|---|
committer | kousu <nick@kousu.ca> | 2017-10-05 13:18:23 -0400 |
commit | cb9b55217d40a50f89f0445294a0b2650fc3dc26 (patch) | |
tree | 289f0acdf736709ff0b2725dd668d091f5aff54e /testcases/010-cpu-usage/setup.pl | |
parent | aefa784882debe98f88799f0e8fdb544cb8ec3a9 (diff) |
Fix CPU unit tests (#239)
Support any amount of available cores on testing machine.
Diffstat (limited to 'testcases/010-cpu-usage/setup.pl')
-rwxr-xr-x | testcases/010-cpu-usage/setup.pl | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/testcases/010-cpu-usage/setup.pl b/testcases/010-cpu-usage/setup.pl new file mode 100755 index 0000000..8123374 --- /dev/null +++ b/testcases/010-cpu-usage/setup.pl @@ -0,0 +1,23 @@ +#!/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"; +print $fh "cpu0 100 0 0 0 0 0 0 0 0 0\n"; +if ($cpu_count > 1) { + print $fh "cpu1 50 0 0 50 0 0 0 0 0 0\n"; + for (my $i = 2; $i <= $cpu_count; $i++) { + print $fh "cpu$i 0 0 0 0 0 0 0 0 0 0\n"; + } +} +close $fh; |