summaryrefslogtreecommitdiff
path: root/test/module
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-06-07 23:45:31 +0200
committerJules Laplace <julescarbon@gmail.com>2018-06-07 23:45:31 +0200
commit8850e41b3c51a5d90ca6c1667d6c1b1cebae6ad0 (patch)
tree0d92519c3980f83fcb29bffaae674722e9338041 /test/module
parent927d75b8d4579f86adb0c3d8f3eb8847924b0c09 (diff)
"after" tasks working
Diffstat (limited to 'test/module')
-rwxr-xr-xtest/module/test.pl10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/module/test.pl b/test/module/test.pl
index 1fad6c7..0d5a9d0 100755
--- a/test/module/test.pl
+++ b/test/module/test.pl
@@ -8,10 +8,13 @@ STDOUT->autoflush(1);
my $train;
my $test;
+my $wait;
+my $buzz;
GetOptions (
"train" => \$train,
"test" => \$test,
"wait" => \$wait,
+ "buzz" => \$buzz,
)
or die("Error in command line arguments\n");
@@ -35,6 +38,13 @@ if ($train) {
print "$i...\n";
sleep 1;
}
+} elsif ($buzz) {
+ print "we are buzzing!!!!!\n";
+ for (my $i = 0; $i < 7; $i++) {
+ print "$i...!\n";
+ sleep 1;
+ }
+ print "catch the buzzz!\n";
} else {
die "unknown command!";
}