diff options
author | Ori Bernstein <ori@eigenstate.org> | 2015-09-26 17:25:18 -0700 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2015-09-26 17:25:18 -0700 |
commit | 69b24ca042654cfc2a6eb623cd2c86711f8c75bf (patch) | |
tree | df4d63514f616cd69f307eb3f553906150c6cdbc /lib/regex | |
parent | 2c27e157e7fcdc82a6f010dd63d1ee433b86fe1d (diff) | |
download | mc-69b24ca042654cfc2a6eb623cd2c86711f8c75bf.tar.gz |
Remove regex test dependency on installed libs.
I should really get around to adding the global include feature.
Diffstat (limited to 'lib/regex')
-rw-r--r-- | lib/regex/test/bld.sub | 56 |
1 files changed, 49 insertions, 7 deletions
diff --git a/lib/regex/test/bld.sub b/lib/regex/test/bld.sub index 1b22634..8307b99 100644 --- a/lib/regex/test/bld.sub +++ b/lib/regex/test/bld.sub @@ -1,7 +1,49 @@ -test basic {inc=../../std,inc=..} = basic.myr testmatch.myr;; -test boundaries {inc=../../std,inc=..} = boundaries.myr testmatch.myr;; -test capture {inc=../../std,inc=..} = capture.myr testmatch.myr;; -test class {inc=../../std,inc=..} = class.myr testmatch.myr;; -test failmatch {inc=../../std,inc=..} = failmatch.myr testmatch.myr;; -test negclass {inc=../../std,inc=..} = negclass.myr testmatch.myr;; -test unicode {inc=../../std,inc=..} = unicode.myr testmatch.myr;; +test basic = + basic.myr + testmatch.myr + lib @/lib/std:std + lib @/lib/sys:sys + lib @/lib/regex:regex +;; +test boundaries = + boundaries.myr + testmatch.myr + lib @/lib/std:std + lib @/lib/sys:sys + lib @/lib/regex:regex +;; +test capture = + capture.myr + testmatch.myr + lib @/lib/std:std + lib @/lib/sys:sys + lib @/lib/regex:regex +;; +test class = + class.myr + testmatch.myr + lib @/lib/std:std + lib @/lib/sys:sys + lib @/lib/regex:regex +;; +test failmatch = + failmatch.myr + testmatch.myr + lib @/lib/std:std + lib @/lib/sys:sys + lib @/lib/regex:regex +;; +test negclass = + negclass.myr + testmatch.myr + lib @/lib/std:std + lib @/lib/sys:sys + lib @/lib/regex:regex +;; +test unicode = + unicode.myr + testmatch.myr + lib @/lib/std:std + lib @/lib/sys:sys + lib @/lib/regex:regex +;; |