1
0
mirror of https://github.com/janet-lang/janet synced 2024-09-27 14:48:13 +00:00

Test feature flag

This commit is contained in:
Calvin Rose 2024-05-26 11:16:31 -05:00
parent 87db463f4e
commit fd5315793c
2 changed files with 4 additions and 2 deletions

View File

@ -76,4 +76,6 @@
#define __BSD_VISIBLE 1
#endif
#define _FILE_OFFSET_BITS 64
#endif

View File

@ -41,8 +41,8 @@
nil)
# Test mkdir -> rmdir
(assert (os/mkdir "./tempdir123"))
(rmrf "./tempdir123")
(assert (os/mkdir "tempdir123"))
(rmrf "tempdir123")
# Setup a temporary syspath for manipultation
(math/seedrandom (os/cryptorand 16))