Skip to content

Commit fc4a61a

Browse files
[all] Test reordered testuite
1 parent b3cd21e commit fc4a61a

2 files changed

Lines changed: 41 additions & 1 deletion

File tree

build-dev-tarball.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ git clone --depth 2 -b "$branch" https://git.savannah.gnu.org/git/"$package".git
3939
git clone --depth 1 "${gnulib_url}"
4040

4141
# Apply patches.
42-
(cd "$package" && patch -p1 < ../patches/Skip-test-option-parser.sh-for-ksh-shell-on-NetBSD.patch)
42+
(cd "$package" && patch -p1 < ../patches/Skip-test-option-parser.sh-for-ksh-shell-on-NetBSD.patch \
43+
&& patch -p1 < ../patches/0001-Makefile.am-Reorder-testsuite.patch)
4344

4445
export GNULIB_SRCDIR=`pwd`/gnulib
4546
cd "$package"
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
From a317aec0728ee227e8e118672034b82449150b0d Mon Sep 17 00:00:00 2001
2+
From: Ileana Dumitrescu <ileanadumitrescu95@gmail.com>
3+
Date: Tue, 2 Sep 2025 20:10:44 +0300
4+
Subject: [PATCH] Makefile.am: Reorder testsuite
5+
6+
---
7+
Makefile.am | 6 +++---
8+
1 file changed, 3 insertions(+), 3 deletions(-)
9+
10+
diff --git a/Makefile.am b/Makefile.am
11+
index f25663d8..ccca7dcb 100644
12+
--- a/Makefile.am
13+
+++ b/Makefile.am
14+
@@ -698,6 +698,7 @@ TESTSUITE_AT = tests/testsuite.at \
15+
tests/nocase.at \
16+
tests/install.at \
17+
tests/versioning.at \
18+
+ tests/versioning_script.at \
19+
tests/destdir.at \
20+
tests/old-m4-iface.at \
21+
tests/am-subdir.at \
22+
@@ -733,12 +734,11 @@ TESTSUITE_AT = tests/testsuite.at \
23+
tests/dumpbin-symbols.at \
24+
tests/deplibs-mingw.at \
25+
tests/sysroot.at \
26+
- tests/stresstest.at \
27+
- tests/cmdline_wrap.at \
28+
tests/bug_62343.at \
29+
tests/bug_71489.at \
30+
tests/bug_42313.at \
31+
- tests/versioning_script.at \
32+
+ tests/stresstest.at \
33+
+ tests/cmdline_wrap.at \
34+
$(NOTHING_ELSE)
35+
36+
EXTRA_DIST += $(testsuite) $(TESTSUITE_AT) $(package_m4)
37+
--
38+
2.50.1
39+

0 commit comments

Comments
 (0)