mirror of
https://github.com/uutils/grep.git
synced 2026-06-10 16:15:11 -07:00
f0ae449d11
Add util/fetch-gnu.sh (downloads the GNU grep 3.12 release tarball from ftp.gnu.org) and util/run-gnu-testsuite.sh, which reuses the gnulib test framework shipped in the tarball (tests/init.sh + init.cfg) and injects the Rust grep binary via PATH, replicating tests/Makefile.am's TESTS_ENVIRONMENT. Each test is classified by its gnulib exit code (0=PASS, 77=SKIP, else FAIL) and results are emitted as JSON. Modelled on ../sed (lightweight PATH-injection runner) and ../coreutils (release-tarball fetch). Current baseline: 61 pass / 39 fail / 28 skip of 128 tests -- the failures quantify the remaining GNU-compatibility gap.
18 lines
749 B
Bash
Executable File
18 lines
749 B
Bash
Executable File
#!/bin/bash -e
|
|
# This file is part of the uutils grep package.
|
|
#
|
|
# For the full copyright and license information, please view the LICENSE
|
|
# file that was distributed with this source code.
|
|
#
|
|
# Download and extract the upstream GNU grep release tarball into the current
|
|
# directory. Run it from an (empty) directory that will hold the GNU grep tree,
|
|
# e.g.:
|
|
#
|
|
# mkdir -p ../gnu.grep && (cd ../gnu.grep && bash ../grep/util/fetch-gnu.sh)
|
|
#
|
|
# The extracted tree ships a ready-to-use gnulib test framework under tests/
|
|
# (init.sh + init.cfg + the extensionless test scripts), which
|
|
# util/run-gnu-testsuite.sh drives against the Rust grep binary.
|
|
ver="3.12"
|
|
curl -L "https://ftp.gnu.org/gnu/grep/grep-${ver}.tar.xz" | tar --strip-components=1 -xJf -
|