shithub: mc

Download patch

ref: 69b24ca042654cfc2a6eb623cd2c86711f8c75bf
parent: 2c27e157e7fcdc82a6f010dd63d1ee433b86fe1d
author: Ori Bernstein <ori@eigenstate.org>
date: Sat Sep 26 13:25:18 EDT 2015

Remove regex test dependency on installed libs.

    I should really get around to adding the global include feature.

--- 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
+;;