diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-05-02 12:50:52 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-05-02 12:50:52 -0400 |
commit | 1f9b1ae7a13f004450f543afb737d8bc8534acdd (patch) | |
tree | 16510fccf9c64c746597334f24e86fbdc6f98e96 /tests | |
parent | 065cd9359366197fd8ea66cc584f4e857dfa6ab6 (diff) |
Add 'library' directive
Diffstat (limited to 'tests')
-rw-r--r-- | tests/cffi.urp | 10 | ||||
-rw-r--r-- | tests/clib.urp | 9 |
2 files changed, 10 insertions, 9 deletions
diff --git a/tests/cffi.urp b/tests/cffi.urp index f2755cb6..a8f6c2b7 100644 --- a/tests/cffi.urp +++ b/tests/cffi.urp @@ -1,12 +1,4 @@ debug -ffi test -include test.h -script http://localhost/test/test.js -link test.o -effectful Test.print -serverOnly Test.foo -clientOnly Test.bar -jsFunc Test.print=print -jsFunc Test.bar=bar +library clib cffi diff --git a/tests/clib.urp b/tests/clib.urp new file mode 100644 index 00000000..b803a604 --- /dev/null +++ b/tests/clib.urp @@ -0,0 +1,9 @@ +ffi test +include test.h +script http://localhost/test/test.js +link test.o +effectful Test.print +serverOnly Test.foo +clientOnly Test.bar +jsFunc Test.print=print +jsFunc Test.bar=bar |