1
0
mirror of https://github.com/janet-lang/janet synced 2025-12-05 08:08:07 +00:00

Add regression test for #78

This commit is contained in:
Calvin Rose
2019-04-09 09:14:40 -04:00
parent 5287007cd6
commit d514eab627
2 changed files with 1 additions and 1 deletions

11
test/install/build.janet Normal file
View File

@@ -0,0 +1,11 @@
(import cook)
(cook/make-native
:name "testmod"
:source @["testmod.c"])
(import build/testmod :as testmod)
(if (not= 5 (testmod/get5)) (error "testmod/get5 failed"))
(print "OK!")