summaryrefslogtreecommitdiff
path: root/unit-tests/doterror
diff options
context:
space:
mode:
Diffstat (limited to 'unit-tests/doterror')
-rw-r--r--unit-tests/doterror20
1 files changed, 20 insertions, 0 deletions
diff --git a/unit-tests/doterror b/unit-tests/doterror
new file mode 100644
index 0000000..75d8920
--- /dev/null
+++ b/unit-tests/doterror
@@ -0,0 +1,20 @@
+# $Id: doterror,v 1.1.1.1 2010/04/08 17:43:00 sjg Exp $
+
+
+.BEGIN:
+ @echo At first, I am
+
+.END:
+ @echo not reached
+
+.ERROR:
+ @echo "$@: Looks like '${.ERROR_TARGET}' is upset."
+
+all: happy sad
+
+happy:
+ @echo $@
+
+sad:
+ @echo and now: $@; exit 1
+