summaryrefslogtreecommitdiffstats
path: root/tests/in
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright yearKaren Arutyunov2019-01-162-2/+2
|
* Rename .test/test{} to .testscript/testscript{}Boris Kolpackov2018-09-041-1/+1
|
* Add --after <ref-file> option for testscript touch builtinKaren Arutyunov2018-07-171-3/+1
|
* Add temporary sleep to in test to verify debugging hypothesisBoris Kolpackov2018-07-171-0/+3
|
* Handle executables (permissions, extensions) in in::ruleBoris Kolpackov2018-07-171-0/+17
|
* Implement in moduleBoris Kolpackov2018-07-162-0/+101
Given test.in containing something along these lines: foo = $foo$ Now we can do: using in file{test}: in{test.in} file{test}: foo = FOO The alternative variable substitution symbol can be specified with the in.symbol variable and lax (instead of the default strict) mode with in.substitution. For example: file{test}: in.symbol = '@' file{test}: in.substitution = lax