テストの整理
[YACASL2.git] / test / unit / n2word / getint.c
diff --git a/test/unit/n2word/getint.c b/test/unit/n2word/getint.c
new file mode 100644 (file)
index 0000000..945db38
--- /dev/null
@@ -0,0 +1,22 @@
+#include <stdio.h>
+#include "casl2.h"
+#include "assemble.h"
+
+int main(){
+    int i;
+    WORD r;
+    char *str[] = {
+        "0", "01", "1a", "-5G", "123", "32767", "32768", "32769",
+        "-1", "-2345", "-32768", "-32769", "-32770"
+    };
+    for(i = 0; i < sizeof(str)/sizeof(str[0]); i++) {
+        r = n2word(str[i]);
+        printf("%s\t0x%04x", str[i], r);
+        if(cerrno > 0) {
+            printf("\tError - %d\t%s", cerrno, cerrmsg);
+            freecerr();
+        }
+        printf("\n");
+    }
+    return 0;
+}