mirror of
https://https.git.savannah.gnu.org/git/findutils.git
synced 2026-01-26 15:39:06 +00:00
Borrow the 'tests' framework from GNU coreutils. This allows better shell-style tests with more control over stdin, stdout, stderr, signals, preparatory steps, cleanup, return code verification, root-only tests, etc. * .gitignore: Add entries for per-test *.log and *.trs files, and the 'test-suite.log'. * .x-update-copyright: Exempt 'tests/init.sh' as this comes from gnulib. * Makefile.am: Include 'tests/local.mk'. (EXTRA_DIST): Add 'tests/GNUmakefile'. (SUBDIRS): Move 'gnulib-tests' to the end, i.e., run our own tests first. (ALL_RECURSIVE_TARGETS): Initialize. (update-gnulib-to-latest): Copy 'tests/init.sh' from gnulib. * cfg.mk: Add some syntax-check rules. * init.cfg: Add file. * tests/GNUmakefile: Likewise. * tests/envvar-check: Likewise. * tests/init.sh: Likewise. * tests/lang-default: Likewise. * tests/local.mk: Likewise. * tests/misc/help-version.sh: Likewise. * tests/other-fs-tmpdir: Likewise. * tests/sample-test: Likewise. * tests/.gitignore: Likewise. * NEWS (Changes to the build process): Mention the new test framework.
11 lines
326 B
Bash
11 lines
326 B
Bash
#!/bin/sh
|
|
# Set locale-related environment variables so we get consistent
|
|
# message translations, time formats, sort orderings, etc.
|
|
|
|
LC_ALL=C
|
|
export LC_ALL
|
|
unset LANGUAGE NLSPATH
|
|
|
|
# These settings shouldn't matter, but unset them anyway just in case.
|
|
unset LANG LC_COLLATE LC_CTYPE LC_MESSAGES LC_MONETARY LC_NUMERIC LC_TIME
|