From fe2509fc16399204609709855904fa1aaba4b392 Mon Sep 17 00:00:00 2001 From: chaoskagami Date: Mon, 26 Sep 2016 21:14:10 -0400 Subject: [PATCH] Stash for now --- test/Makefile | 14 ++++++++++++++ test/vm-test1.pco | 10 ++++++++++ 2 files changed, 24 insertions(+) create mode 100644 test/Makefile create mode 100644 test/vm-test1.pco diff --git a/test/Makefile b/test/Makefile new file mode 100644 index 0000000..3dc0cfc --- /dev/null +++ b/test/Makefile @@ -0,0 +1,14 @@ +.PHONY: all +all: build + +.PHONY: build +build: clean $(patsubst %.pco, %.vco, $(wildcard *.pco)) + +.PHONY: install +install: + +%.vco: %.pco + ../host/bytecode_asm.py $< $@ + +clean: + rm -f *.vco diff --git a/test/vm-test1.pco b/test/vm-test1.pco new file mode 100644 index 0000000..e6b0610 --- /dev/null +++ b/test/vm-test1.pco @@ -0,0 +1,10 @@ +# $name Test Suite (DO NOT ENABLE) +# $desc THIS IS FOR INTERNAL USE ONLY BY UNIT TESTS. DO NOT ENABLE IT. +# $title 0000000000000000 +# $ver 00 +# $uuid FF + +find "test" +abortnf +set "best" + -- 2.39.5