diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2021-06-06 00:02:57 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2021-06-08 18:39:16 +0200 |
commit | 12932ca20847e09be31fbce3bf029389a47b84cd (patch) | |
tree | a33c091c7f71b450dd9d008c86d13c3c2fa0acb6 /bootstrap.am | |
parent | 4686d184967c0c747777c8edcc6b00dc023b8aa9 (diff) | |
download | sciteco-12932ca20847e09be31fbce3bf029389a47b84cd.tar.gz |
added test suite cases for memory limiting and command execution
* Turned out to be useful in debugging the "Memory limiting during spawning" test case
on Windows.
* Use UNIX shell emulation (0,128ED) in all test cases.
Should be necessary in order to run the testsuite on Windows, but
it is currently broken anyway.
* avoid <EG> when preprocessing files - use GNU Make's $(shell) instead
* Fixes builds on MinGW where there are still problems with <EC> and <EG>
at least in the virtual build environment.
* Results in a another automake warning about non-POSIX Make constructs.
This is not critical since we depend on GNU Make anyway.
Diffstat (limited to 'bootstrap.am')
-rw-r--r-- | bootstrap.am | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bootstrap.am b/bootstrap.am index 474a672..e4309bc 100644 --- a/bootstrap.am +++ b/bootstrap.am @@ -35,8 +35,7 @@ SUBST_MACRO = eb$<\e \ <fs@pkgdatadir^Q@\e$(pkgdatadir)\e;>j \ <fs@scitecolibdir^Q@\e$(scitecolibdir)\e;>j \ <fs@TECO_INTEGER^Q@\e@TECO_INTEGER@\e;>j \ - ^U[$$LC_ALL]C\e EG.d@DATE@ "+%d %b %Y"\e \ - <fs@DATE^Q@\e^EQ.d\e; -D>j \ + <fs@DATE^Q@\e$(shell LC_ALL=C @DATE@ "+%d %b %Y")\e; -D>j \ ew$@\e # The SciTECO-based substitutor must not process config.h.in. |