added regtest for bug #
1817005 - as-z80 chokes on long labels
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4964
4a8a32a2-be11-0410-ad9d-
d568d2c75423
+2007-11-13 Borut Razem <borut.razem AT siol.net>
+
+ * support/regression/tests/bug-1817005.c:
+ added regtest for bug #1817005 - as-z80 chokes on long labels
+
2007-11-12 Borut Razem <borut.razem AT siol.net>
* as\z80\asmain.c, as\z80\asm.h, as\z80\assym.c, as\z80\asdata.c,
--- /dev/null
+/* bug-1817005.c
+ */
+
+#include <testfwk.h>
+
+/* this is an assemble time test, so it doesn't have to be executed */
+
+int
+function_with_really_long_name(void)
+{
+ return 0;
+}
+
+/* dummy test function */
+
+void
+testDummy(void)
+{
+}