Add ARM files
[dh-make-perl] / dev / arm / libsub-uplevel-perl / libsub-uplevel-perl-0.1901 / t / 01_die_check.t
diff --git a/dev/arm/libsub-uplevel-perl/libsub-uplevel-perl-0.1901/t/01_die_check.t b/dev/arm/libsub-uplevel-perl/libsub-uplevel-perl-0.1901/t/01_die_check.t
new file mode 100644 (file)
index 0000000..5a3380f
--- /dev/null
@@ -0,0 +1,16 @@
+#!/usr/bin/perl -w
+
+# Kirk:   How we deal with death is at least as important as how we deal 
+#         with life, wouldn't you say? 
+# Saavik: As I indicated, Admiral, that thought had not occurred to me.  
+# Kirk:   Well, now you have something new to think about. Carry on. 
+# XXX DG: Why is this test here?  Seems pointless.  Oh, well.
+
+use lib qw(t/lib);
+use Test::More tests => 1;
+
+#line 12
+eval { die };
+is( $@, "Died at $0 line 12.\n" );
+