diff options
author | Emeric Planet <emeric.planet@datadoghq.com> | 2017-08-29 19:01:30 +0200 |
---|---|---|
committer | Michael Stapelberg <stapelberg@users.noreply.github.com> | 2017-08-29 19:01:30 +0200 |
commit | 884e4da6730a31fc7a5ef892fb9cb061baaf5f6c (patch) | |
tree | a35256792803bfa408faf3d46f1ca2f9cb491b80 /testcases/011-cpu-usage/expected_output.pl | |
parent | ca9bee8b885e810fd849abcb9b544b487636854c (diff) |
Fix CPU unit tests (#239)
Support any amount of available cores on testing machine.
Diffstat (limited to 'testcases/011-cpu-usage/expected_output.pl')
-rw-r--r-- | testcases/011-cpu-usage/expected_output.pl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testcases/011-cpu-usage/expected_output.pl b/testcases/011-cpu-usage/expected_output.pl new file mode 100644 index 0000000..d8bf5bd --- /dev/null +++ b/testcases/011-cpu-usage/expected_output.pl @@ -0,0 +1,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 == 1) { + print "all: 00% CPU_0: 00% CPU_1: \n"; +} else { + print "all: 50% CPU_0: 00% CPU_1: 100%\n"; +} |