aboutsummaryrefslogtreecommitdiffstats
path: root/test/Makefile.in
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2013-12-011-3/+7
|\|
| * Improve fts test for Cygwin.Arnold D. Robbins2013-12-011-3/+7
| |
* | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2013-11-291-10/+1
|\|
| * Remove pipeio3 test.Arnold D. Robbins2013-11-291-10/+1
| |
* | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2013-11-281-1/+1
|\|
| * Make 'make distcheck' work.Arnold D. Robbins2013-11-281-1/+1
| |
* | Merge branch 'gawk-4.1-stable' to get --include to work.Andrew J. Schorr2013-11-271-2/+2
|\|
| * Add --include long option and tests to make sure that --load and --include work.Andrew J. Schorr2013-11-271-2/+2
| |
* | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2013-11-071-3/+5
|\|
| * Solaris fixes.Arnold D. Robbins2013-11-071-3/+5
| |
* | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2013-11-031-2/+11
|\|
| * Make pipeio3 test work on PPC Mac OS X.Arnold D. Robbins2013-11-031-1/+2
| |
| * Addtional fix for \s in multibyte locales.Arnold D. Robbins2013-11-031-1/+9
| |
* | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2013-10-301-1/+1
|\|
| * Make 'make check' exit non-zero if failure, for buildbots.Arnold D. Robbins2013-10-301-1/+1
| |
* | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2013-10-301-2/+2
|\|
| * Make charasbytes test more robust. We hope.Arnold D. Robbins2013-10-301-1/+1
| |
| * Further fix to pipeio3.Arnold D. Robbins2013-10-301-1/+1
| |
* | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2013-10-241-5/+6
|\|
| * Improve handling of writes to dead pipes.Arnold D. Robbins2013-10-241-5/+6
| |
* | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2013-10-171-2/+9
|\|
| * Catch SIGPIPE.Arnold D. Robbins2013-10-171-2/+9
| |
* | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2013-10-101-1/+20
|\|
| * Fix multibyte \s and \S in dfa.c from GNU grep.Arnold D. Robbins2013-10-101-1/+20
| |
* | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2013-10-091-0/+8
|\|
| * Bug fix for $i++ = 3.Arnold D. Robbins2013-10-091-0/+8
| |
* | Improvements in the random number generator.Arnold D. Robbins2013-09-251-1/+8
|/
* Fix problem when extending NF. See test/nfloop.Arnold D. Robbins2013-09-131-1/+8
|
* Fix generation of Maketests file.Arnold D. Robbins2013-09-131-533/+532
|
* Quote $(srcdir) in test makefiles.Arnold D. Robbins2013-08-151-250/+251
|
* Fix for %c in multibyte locale + new tests.Arnold D. Robbins2013-07-041-1/+10
|
* New test case for dfa problem fixed earlier.Arnold D. Robbins2013-06-271-1/+10
|
* Move clos1way test into Makefile.am.Arnold D. Robbins2013-06-241-5/+5
|
* Fix corner case use of exit.Arnold D. Robbins2013-06-031-1/+8
|
* Additional profiling tests.Arnold D. Robbins2013-05-301-1/+17
|
* Fix building, installing, and testing extensions on MS-Windows.Eli Zaretskii2013-05-141-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | test/Makefile.in (mpfr-tests, shlib-tests): Add a blank character between ' and /FOO/ in Gawk command lines, for the benefit of testing under MSYS Bash. test/filefuncs.awk (BEGIN): Call 'stat' on gawkapi.o, not on gawk, which does not exist on systems that produce gawk.exe. README_D/README.pc: Update the pc build and test instructions. pc/Makefile.tst (AWK): Set AWKLIBPATH so extensions could be found. (LS): New variable. (check): Add back shlib-tests and shlib-msg-end. (readdir): Add a warning regarding inode reporting by ls.exe. (fts, fork, fork2): Add message about expected failure on MinGW. pc/Makefile (install): Install the extensions. (install-strip): Likewise. pc/Makefile.ext: New file. io.c (devopen) [__EMX__ || __MINGW32__]: Produce EISDIR on MinGW when an attempt to open() a directory fails. (two_way_open) [__EMX__ || __MINGW32__]: When trying to open() a directory fails with EISDIR, assign FAKE_FD_VALUE to the file descriptor and attributes of a directory to its mode bits. This is needed to support the readdir extension. gawkapi.h (FAKE_FD_VALUE): New macro, used in io.h and in extension/gawkdirfd.h. extension/rwarray.c [__MINGW32__]: Include winsock2.h instead of arpa/inet.h. extension/readdir.c [__MINGW32__]: Include windows.h. Include gawkapi.h before gawkdirfd.h, since the former defines FAKE_FD_VALUE needed by the latter. (ftype): Accept an additional argument, the directory that is being read. Callers changed. [!DT_BLK]: Produce the file's type by calling 'stat' on it, if the dirent structure doesn't provide that. (get_inode): New function, to produce inode values on MS-Windows. (dir_get_record): Use it. extension/inplace.c (chown, link) [__MINGW32__]: Redirect to existing library functions. (mkstemp) [__MINGW32__]: New function, for MinGW, which doesn't have it in its library. (do_inplace_end) [__MINGW32__]: Remove the old file before renaming the new, since 'rename' on Windows cannot overwrite existing files. extension/gawkdirfd.h (ENOTSUP): Define to ENOSYS if not already defined. (DIR_TO_FD): If not defined yet, define to FAKE_FD_VALUE. extension/filefuncs.c (get_inode) [_WIN32]: New function, produces the file index used on Windows as its inode. (fill_stat_array) [_WIN32]: Use it.
* Fix symtab9 test so it will work on Windows too.Arnold D. Robbins2013-05-021-5/+6
|
* Fix 'next' test to be locale-independent.Arnold D. Robbins2013-04-191-11/+12
|
* Update to automake 1.13.1.Arnold D. Robbins2013-04-161-16/+30
|
* Prettify lists of tests updating in Makefile.am.Arnold D. Robbins2013-04-161-11/+11
|
* More portability: mostly for SGI IRIX.Arnold D. Robbins2013-03-241-0/+4
|
* Add check and message for Linux and NFS for readdir.Arnold D. Robbins2013-03-241-0/+4
|
* Further portability fixes in extensions, tests.Arnold D. Robbins2013-03-201-1/+1
|
* Merge branch 'gawk-4.0-stable'Arnold D. Robbins2013-03-111-1/+11
|\
| * Fix a bug with ] as real char in regexps.Arnold D. Robbins2013-03-111-1/+11
| |
* | Add API to --version output. Use it for shlib tests.Arnold D. Robbins2013-01-311-3/+3
| |
* | Move functab4 into shlib tests.Arnold D. Robbins2013-01-311-7/+7
| |
* | Use gawk --version to decide whether to run MPFR tests.Andrew J. Schorr2013-01-311-4/+6
| |
* | Fix dist to include mpfr tests and fix reginttrad.Arnold D. Robbins2013-01-271-1/+14
| |
* | Run MPFR tests is MPFR is available.Arnold D. Robbins2013-01-271-1/+10
| |