diff options
author | Dale Mellor <mcron-lsfnyl@rdmp.org> | 2020-04-13 11:42:39 +0100 |
---|---|---|
committer | Dale Mellor <mcron-lsfnyl@rdmp.org> | 2020-04-20 17:03:25 +0000 |
commit | 1eedf3b6d24f421ccdb8798b053ee718d1051651 (patch) | |
tree | 9008b15f214aaa993f67fa4cd92f099b1bdc4a45 /tests/schedule-2.sh | |
parent | 4a05a2e8612560cd7f3274d2930e86bfc9f1ec93 (diff) | |
download | mcron-1eedf3b6d24f421ccdb8798b053ee718d1051651.tar.gz mcron-1eedf3b6d24f421ccdb8798b053ee718d1051651.tar.bz2 mcron-1eedf3b6d24f421ccdb8798b053ee718d1051651.zip |
project: banish need for C compiler
This patch gets rid of the thin veneer that we currently have around the three
executables. This was done for historical reasons (circa 2003 Guile couldnʼt
deal with process signals and forks). In fact these problems were fixed many
moons ago, and there is now no need for it. The project becomes 100% Guile!
Many files are affected; interested coders should use the GIT repository to
understand the details of all the changes.
Diffstat (limited to 'tests/schedule-2.sh')
-rw-r--r-- | tests/schedule-2.sh | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/tests/schedule-2.sh b/tests/schedule-2.sh index 7039123..531af54 100644 --- a/tests/schedule-2.sh +++ b/tests/schedule-2.sh @@ -26,13 +26,13 @@ export SOURCE_DATE_EPOCH TZ=UTC0 export TZ -LC_ALL=C -export LC_ALL - # Use current working directory to store mcron files XDG_CONFIG_HOME=`pwd` export XDG_CONFIG_HOME +LC_ALL=C +export LC_ALL + mkdir cron cat > cron/foo.guile <<EOF (job '(next-second) '(display "foo\n")) @@ -73,10 +73,9 @@ Thu Jan 1 00:00:08 1970 +0000 EOF -mcron -s cron/foo.guile > output-A -diff expected output-A \ +mcron -s cron/foo.guile > output +diff expected output \ || skip_ 'The -s option is not fully functional; -this will be fixed with a future version of GNU Guile and then -a future version of GNU Mcron.' +this will be fixed with a future version of GNU Guile.' Exit 0 |