tests/java-compile-run-flat.test


Log

Author Commit Date CI Message
Stefano Lattarini 5b44ce39 2012-02-23T13:07:57 tests: quote 'like this', not `like this', as per GCS recommendation This patch converts the automake testsuite and related files, to the use of new quoting format 'like this' or "like this" rather than `like this'. This is done for consistency with the new recommendations in the GNU Coding Standards, and, well, because I've come to actually prefer the '...' and "..." quoting formats over the `...' one. * tests/README: Update quoting format throughout. Remove some "excessive" use of quoting, and throw in minor rewording where appropriate. * tests/Makefile.am: Likewise, for comments. * tests/CheckListOfTests.am: Likewise. * tests/defs-static.in: Likewise. * tests/defs: Likewise. * tests/trivial-test-driver: Likewise. * Many tests/*.tap, tests/*.test and tests/*.sh files: Likewise, and for the diagnostic and informational messages as well. * tests/gen-testsuite-part: Likewise, and for the generated tests as well.
Stefano Lattarini db973eaa 2012-02-21T19:47:36 tests: prefer 'configure.ac' over 'configure.in' With this change, our testsuite now uses 'configure.ac' as the name for the typical autoconf input, instead of the obsolescent 'configure.in' (which has been deprecated for several years, at least since autoconf 2.50). Most of the test cases changed by this commit have been automatically modified with this sed command (using GNU sed): sed -i 's/\<configure\(\\\?\)\.in\>/configure\1.ac/g' * syntax-checks.mk (sc_tests_no_configure_in): New syntax check. (syntax_check_rules): Add it. * tests/defs: Create stub for autoconf input in 'configure.ac', not in 'configure.in'. Adjust comments. ($AUTOCONF, $AUTOHEADER, $AUTORECONF): Remove workaround for the infamous debian autoconf wrapper: we don't need such workaround anymore now that we name our autoconf input as 'configure.ac'. For more information, see commit v1.11-564-g63da492 "test defs: hack to support autoconf-wrapper programs" of 16-12-2011. * tests/README: Use 'configure.ac', not 'configure.in'. * Many many tests: Likewise. * tests/backcompat3.test: Adjust to avoid spurious failures. * tests/backcompat5.test: Likewise. * tests/missing6.test: Likewise. * tests/backcompat6.test: Likewise, and extend a bit since we are at it.
Stefano Lattarini 641a5a4b 2012-02-16T10:46:23 maint: run "make update-copyright"
Stefano Lattarini e3186cb4 2011-12-23T20:39:46 tests: few minor fixlets, improvements and tweakings * tests/defs-static.in ($top_testbuilddir): New, for consistency and completeness. * tests/Makefile.am (do_subst): Substitute @abs_top_testbuilddir@ as well. * tests/java-compile-run-mested.test: Prefer AM_TESTS_ENVIRONMENT over TESTS_ENVIRONMENT, now that the former has become available. * tests/java-compile-run-flat.test: Correct a botched "FIXME" comment. * tests/tap-realtime.test: Remove extra whitespace in comments. * tests/missing-tar.test: Use `get_shell_script' to bring in the `missing' script, to increase coverage. Remove redundant call to `set -e'. Fix a typo in comments. * tests/get-sysconf.test: Remove redundant definitions of `$top_testsrcdir', `testbuilddir' and `$top_testbuilddir'.
Stefano Lattarini b2b17e15 2011-09-18T19:25:38 tests: remove redundant settings of `errexit' shell flag * tests/aclocal-acdir.test: Do not set the `errexit' shell flag, as it is already set by `tests/defs'. * tests/aclocal-print-acdir.test: Likewise. * tests/distcheck-missing-m4.test: Likewise. * tests/distcheck-outdated-m4.test: Likewise. * tests/java-clean.test: Likewise. * tests/java-compile-install.test: Likewise. * tests/java-compile-run-flat.test: Likewise. * tests/java-compile-run-nested.test: Likewise. * tests/java-mix.test: Likewise. * tests/java-no-duplicate.test: Likewise. * tests/java-nobase.test: Likewise. * tests/java-rebuild.test: Likewise. * tests/java-sources.test: Likewise. * tests/java-uninstall.test: Likewise. * tests/javaflags.test: Likewise. * tests/nobase-nodist.test: Likewise. * tests/py-compile-basedir.test: Likewise. * tests/py-compile-basic.test: Likewise. * tests/py-compile-basic2.test: Likewise. * tests/py-compile-destdir.test: Likewise. * tests/py-compile-env.test: Likewise. * tests/py-compile-option-terminate.test: Likewise. * tests/py-compile-usage.test: Likewise. Since we are at it, add an extra blank line, for clarity.
Stefano Lattarini 066f4959 2011-09-18T19:14:55 Merge branch 'master' into testsuite-work
Stefano Lattarini 30f8ffc0 2011-05-20T23:35:26 Merge branch 'maint' into java-work * maint: testsuite: avoid re-running few tests with 'parallel-tests' option testsuite: allow tests to avoid the use of 'parallel-tests' option tests/README: update obsoleted advice With extra edits to these files: - tests/java-compile-run-flat.test - tests/java-compile-run-nested.test - ChangeLog - tests/Makefile.in (autogenerated)
Stefano Lattarini a3988aea 2011-05-03T00:48:02 java tests: use $PATH_SEPARATOR where appropriate * tests/java-compile-run-nested.test: Use `$PATH_SEPARATOR', not `:', to separate entries of extended PATH and CLASSPATH variables. * tests/java-compile-run-flat.test: Likewise.
Stefano Lattarini aa3ad84f 2011-04-23T20:42:30 java coverage: try to build and run a java program * tests/java-compile-run-flat.test: New test, try to build and run a "UNIX-style" java program (complete with wrapper shell script and the like) with a "flat" source-tree setup (i.e., everything in the top-level directory). * tests/java-compile-nested.test: Likewise, but using a more typical "nested" source-tree setup. * tests/Makefile.am (TESTS): Update.