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/cleanup.pl | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 testcases/022-cpu-usage-tenth-cpu/cleanup.pl (limited to 'testcases/022-cpu-usage-tenth-cpu/cleanup.pl') diff --git a/testcases/022-cpu-usage-tenth-cpu/cleanup.pl b/testcases/022-cpu-usage-tenth-cpu/cleanup.pl new file mode 100644 index 0000000..ac341be --- /dev/null +++ b/testcases/022-cpu-usage-tenth-cpu/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; +} -- cgit v1.2.3