aboutsummaryrefslogtreecommitdiff
path: root/dev-bin/ci-debug.sh
diff options
context:
space:
mode:
authorNaoum Hankache <naoum88@gmail.com>2020-02-26 20:14:39 +0300
committerGitHub <noreply@github.com>2020-02-26 20:14:39 +0300
commita6253c2b109538031b7c9b52cbd56adb266c4746 (patch)
tree1b349ba24e7732118d884b4122ef741f091e2704 /dev-bin/ci-debug.sh
parent139ba6333a8b7497b5349a6ed9fde963ea7a90e7 (diff)
parent34714c9ec604da31fc87a98f1f7f165ea50214d1 (diff)
Merge pull request #144 from Tyil/master
Get Rakudo Star working for 2019.07.1
Diffstat (limited to 'dev-bin/ci-debug.sh')
-rw-r--r--dev-bin/ci-debug.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/dev-bin/ci-debug.sh b/dev-bin/ci-debug.sh
new file mode 100644
index 0000000..f7a460a
--- /dev/null
+++ b/dev-bin/ci-debug.sh
@@ -0,0 +1,21 @@
+#! /usr/bin/env sh
+
+#
+# This is an additional script, ran during CI testing. This is intended to
+# debug issues that show up only during CI testing.
+#
+
+main()
+{
+ perl6 -v
+ perl6 -e 'dd $*KERNEL.signal("SIGHUP"), $*KERNEL.signal("HUP")'
+ perl6 -e 'dd $*KERNEL.signal(SIGHUP)'
+ perl6 -e 'dd $*KERNEL.signal("SIGHUP")'
+ perl6 -e 'dd $*KERNEL.signal(HUP)'
+ perl6 -e 'dd $*KERNEL.signal("HUP")'
+ perl6 -e 'dd Signal.enums'
+ perl6 -e 'dd $*KERNEL.signals'
+ uname -a
+}
+
+main "$@"