summaryrefslogtreecommitdiff
path: root/testcases/010-cpu-usage/cleanup.pl
diff options
context:
space:
mode:
authorEmeric Planet <emeric.planet@datadoghq.com>2017-08-29 19:01:30 +0200
committerMichael Stapelberg <stapelberg@users.noreply.github.com>2017-08-29 19:01:30 +0200
commit884e4da6730a31fc7a5ef892fb9cb061baaf5f6c (patch)
treea35256792803bfa408faf3d46f1ca2f9cb491b80 /testcases/010-cpu-usage/cleanup.pl
parentca9bee8b885e810fd849abcb9b544b487636854c (diff)
Fix CPU unit tests (#239)
Support any amount of available cores on testing machine.
Diffstat (limited to 'testcases/010-cpu-usage/cleanup.pl')
-rw-r--r--testcases/010-cpu-usage/cleanup.pl15
1 files changed, 15 insertions, 0 deletions
diff --git a/testcases/010-cpu-usage/cleanup.pl b/testcases/010-cpu-usage/cleanup.pl
new file mode 100644
index 0000000..ac341be
--- /dev/null
+++ b/testcases/010-cpu-usage/cleanup.pl
@@ -0,0 +1,15 @@
+#!/usr/bin/env perl
+
+use v5.10;
+use strict;
+use warnings;
+
+if ($#ARGV != 0 || ! -d $ARGV[0]) {
+ say "Error with cleanup script: argument not provided or not a directory";
+ exit 1;
+}
+
+my $output_file = "$ARGV[0]/stat";
+if (-f $output_file) {
+ unlink $output_file;
+}