aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.chill/misc.ch
diff options
context:
space:
mode:
authorPer Bothner <per@bothner.com>1995-03-02 04:28:57 +0000
committerPer Bothner <per@bothner.com>1995-03-02 04:28:57 +0000
commit1a0a9728474e69f3c7f9ce31b16547a54508ca53 (patch)
treef7a8cfef5f0e86960b56087f9a8fbb03cedcb22b /gdb/testsuite/gdb.chill/misc.ch
parent762cf56f74c95c0d9e2784d66c041ba6ecea92cc (diff)
downloadgdb-1a0a9728474e69f3c7f9ce31b16547a54508ca53.zip
gdb-1a0a9728474e69f3c7f9ce31b16547a54508ca53.tar.gz
gdb-1a0a9728474e69f3c7f9ce31b16547a54508ca53.tar.bz2
* misc.ch, misc.exp, Makefile.in: New test case.
Diffstat (limited to 'gdb/testsuite/gdb.chill/misc.ch')
-rw-r--r--gdb/testsuite/gdb.chill/misc.ch10
1 files changed, 10 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.chill/misc.ch b/gdb/testsuite/gdb.chill/misc.ch
new file mode 100644
index 0000000..6f925f1
--- /dev/null
+++ b/gdb/testsuite/gdb.chill/misc.ch
@@ -0,0 +1,10 @@
+misc_tests : MODULE;
+
+DCL otto INT := 42;
+
+dummyfunc: PROC();
+END dummyfunc;
+
+dummyfunc();
+
+END misc_tests;