Compare commits
No commits in common. "rawhide" and "f16" have entirely different histories.
45 changed files with 120 additions and 481168 deletions
|
|
@ -1 +0,0 @@
|
||||||
1
|
|
||||||
9
.gitignore
vendored
9
.gitignore
vendored
|
|
@ -2,12 +2,3 @@ diffutils-2.8.1.tar.gz
|
||||||
/diffutils-3.0.tar.xz
|
/diffutils-3.0.tar.xz
|
||||||
/diffutils-3.1.tar.xz
|
/diffutils-3.1.tar.xz
|
||||||
/diffutils-3.2.tar.xz
|
/diffutils-3.2.tar.xz
|
||||||
/diffutils-3.3.tar.xz
|
|
||||||
/diffutils-3.5.tar.xz
|
|
||||||
/diffutils-3.6.tar.xz
|
|
||||||
/diffutils-3.7.tar.xz
|
|
||||||
/diffutils-3.8.tar.xz
|
|
||||||
/diffutils-3.9.tar.xz
|
|
||||||
/diffutils-3.10.tar.xz
|
|
||||||
/diffutils-3.11.tar.xz
|
|
||||||
/diffutils-3.12.tar.xz
|
|
||||||
|
|
|
||||||
|
|
@ -1,85 +0,0 @@
|
||||||
From 45a4762bf3241e7fb6a2e01d382791ae44236841 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Paul Eggert <eggert@cs.ucla.edu>
|
|
||||||
Date: Wed, 23 Apr 2025 11:34:20 -0700
|
|
||||||
Subject: [PATCH] sdiff: pacify gcc -flto -Wmaybe-uninitialized
|
|
||||||
|
|
||||||
* src/sdiff.c (edit): Portmanteauize two locals into one, which
|
|
||||||
arguably makes the code clearer, and anyway pacifies gcc -flto
|
|
||||||
-Wmaybe-uninitialized with gcc (GCC) 15.0.1 20250329 (Red Hat
|
|
||||||
15.0.1-0) x86-64 (Bug#78019).
|
|
||||||
---
|
|
||||||
src/sdiff.c | 19 +++++++++++--------
|
|
||||||
1 file changed, 11 insertions(+), 8 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/src/sdiff.c b/src/sdiff.c
|
|
||||||
index 5b1b162..15b8dce 100644
|
|
||||||
--- a/src/sdiff.c
|
|
||||||
+++ b/src/sdiff.c
|
|
||||||
@@ -857,8 +857,7 @@ edit (struct line_filter *left, char const *lname, lin lline, lin llen,
|
|
||||||
{
|
|
||||||
for (;;)
|
|
||||||
{
|
|
||||||
- int cmd0;
|
|
||||||
- int cmd1;
|
|
||||||
+ int cmd;
|
|
||||||
bool gotcmd = false;
|
|
||||||
|
|
||||||
while (! gotcmd)
|
|
||||||
@@ -867,8 +866,8 @@ edit (struct line_filter *left, char const *lname, lin lline, lin llen,
|
|
||||||
perror_fatal (_("write failed"));
|
|
||||||
ck_fflush (stdout);
|
|
||||||
|
|
||||||
- cmd0 = skip_white ();
|
|
||||||
- switch (cmd0)
|
|
||||||
+ cmd = skip_white ();
|
|
||||||
+ switch (cmd)
|
|
||||||
{
|
|
||||||
case '1': case '2': case 'l': case 'r':
|
|
||||||
case 's': case 'v': case 'q':
|
|
||||||
@@ -882,12 +881,15 @@ edit (struct line_filter *left, char const *lname, lin lline, lin llen,
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'e':
|
|
||||||
- cmd1 = skip_white ();
|
|
||||||
+ int cmd1 = skip_white ();
|
|
||||||
switch (cmd1)
|
|
||||||
{
|
|
||||||
case '1': case '2': case 'b': case 'd': case 'l': case 'r':
|
|
||||||
if (skip_white () == '\n')
|
|
||||||
- gotcmd = true;
|
|
||||||
+ {
|
|
||||||
+ gotcmd = true;
|
|
||||||
+ cmd |= cmd1 << UCHAR_WIDTH;
|
|
||||||
+ }
|
|
||||||
else
|
|
||||||
{
|
|
||||||
give_help ();
|
|
||||||
@@ -908,7 +910,7 @@ edit (struct line_filter *left, char const *lname, lin lline, lin llen,
|
|
||||||
if (feof (stdin))
|
|
||||||
{
|
|
||||||
gotcmd = true;
|
|
||||||
- cmd0 = 'q';
|
|
||||||
+ cmd = 'q';
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
FALLTHROUGH;
|
|
||||||
@@ -921,7 +923,7 @@ edit (struct line_filter *left, char const *lname, lin lline, lin llen,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
- switch (cmd0)
|
|
||||||
+ switch (cmd & UCHAR_MAX)
|
|
||||||
{
|
|
||||||
case '1': case 'l':
|
|
||||||
lf_copy (left, llen, outfile);
|
|
||||||
@@ -954,6 +956,7 @@ edit (struct line_filter *left, char const *lname, lin lline, lin llen,
|
|
||||||
if (! tmp)
|
|
||||||
perror_fatal (squote (0, tmpname));
|
|
||||||
|
|
||||||
+ int cmd1 = cmd >> UCHAR_WIDTH;
|
|
||||||
switch (cmd1)
|
|
||||||
{
|
|
||||||
case 'd':
|
|
||||||
--
|
|
||||||
2.48.1
|
|
||||||
|
|
||||||
|
|
@ -1,27 +0,0 @@
|
||||||
From 686357a40ca038edc902276cb3b33f4757d8cfb2 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Paul Eggert <eggert@cs.ucla.edu>
|
|
||||||
Date: Sat, 26 Apr 2025 12:54:06 -0700
|
|
||||||
Subject: [PATCH] sdiff: port back to C17-
|
|
||||||
|
|
||||||
* src/sdiff.c (edit): Do not use a label just before a statement.
|
|
||||||
Problem reported by Bruno Haible (Bug#78032).
|
|
||||||
---
|
|
||||||
src/sdiff.c | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/src/sdiff.c b/src/sdiff.c
|
|
||||||
index 15b8dce..cc961c3 100644
|
|
||||||
--- a/src/sdiff.c
|
|
||||||
+++ b/src/sdiff.c
|
|
||||||
@@ -880,7 +880,7 @@ edit (struct line_filter *left, char const *lname, lin lline, lin llen,
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
- case 'e':
|
|
||||||
+ case 'e':;
|
|
||||||
int cmd1 = skip_white ();
|
|
||||||
switch (cmd1)
|
|
||||||
{
|
|
||||||
--
|
|
||||||
2.48.1
|
|
||||||
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
srpm $1
|
|
||||||
mcd $BUILDDIR/$1
|
|
||||||
$SRC/${1}-*/configure $TCONFIGARGS
|
|
||||||
notparallel
|
|
||||||
test -d tools/gnulib/lib && make $J V=1 -C tools/gnulib/lib
|
|
||||||
make $J V=1
|
|
||||||
make $J install DESTDIR=${ROOTFS}
|
|
||||||
|
|
@ -1,30 +0,0 @@
|
||||||
From d9083a4cc638cf9c7dfc3cc534a7c6b4debf50ab Mon Sep 17 00:00:00 2001
|
|
||||||
From: Bruno Haible <bruno@clisp.org>
|
|
||||||
Date: Thu, 10 Apr 2025 16:42:14 +0200
|
|
||||||
Subject: strcasecmp: Support cross-compilation.
|
|
||||||
|
|
||||||
Reported by Rudi Heitbaum <rudi@heitbaum.com> in
|
|
||||||
<https://lists.gnu.org/archive/html/bug-gnulib/2025-04/msg00055.html>.
|
|
||||||
|
|
||||||
diff --git a/m4/strcasecmp.m4 b/m4/strcasecmp.m4
|
|
||||||
index e40ee5d..eb4345d 100644
|
|
||||||
--- a/m4/strcasecmp.m4
|
|
||||||
+++ b/m4/strcasecmp.m4
|
|
||||||
@@ -1,5 +1,5 @@
|
|
||||||
# strcasecmp.m4
|
|
||||||
-# serial 2
|
|
||||||
+# serial 3
|
|
||||||
dnl Copyright (C) 2002-2025 Free Software Foundation, Inc.
|
|
||||||
dnl This file is free software; the Free Software Foundation
|
|
||||||
dnl gives unlimited permission to copy and/or distribute it,
|
|
||||||
@@ -57,7 +57,7 @@ int main ()
|
|
||||||
gl_cv_func_strcasecmp_works=no
|
|
||||||
fi
|
|
||||||
],
|
|
||||||
- [])
|
|
||||||
+ [:])
|
|
||||||
])
|
|
||||||
])
|
|
||||||
|
|
||||||
--
|
|
||||||
cgit v1.1
|
|
||||||
|
|
@ -1,65 +0,0 @@
|
||||||
commit 80053ab7b57c1f0825deb4a22018dacfa62d7272
|
|
||||||
Author: Paul Eggert <eggert@cs.ucla.edu>
|
|
||||||
Date: Wed Apr 23 11:17:53 2025 -0700
|
|
||||||
|
|
||||||
sdiff: continue → break
|
|
||||||
|
|
||||||
* src/sdiff.c (edit): Don’t use ‘continue’ when a simple
|
|
||||||
break from the switch will do.
|
|
||||||
|
|
||||||
diff --git a/src/sdiff.c b/src/sdiff.c
|
|
||||||
index 7734a82..5b1b162 100644
|
|
||||||
--- a/src/sdiff.c
|
|
||||||
+++ b/src/sdiff.c
|
|
||||||
@@ -872,13 +872,13 @@ edit (struct line_filter *left, char const *lname, lin lline, lin llen,
|
|
||||||
{
|
|
||||||
case '1': case '2': case 'l': case 'r':
|
|
||||||
case 's': case 'v': case 'q':
|
|
||||||
- if (skip_white () != '\n')
|
|
||||||
+ if (skip_white () == '\n')
|
|
||||||
+ gotcmd = true;
|
|
||||||
+ else
|
|
||||||
{
|
|
||||||
give_help ();
|
|
||||||
flush_line ();
|
|
||||||
- continue;
|
|
||||||
}
|
|
||||||
- gotcmd = true;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'e':
|
|
||||||
@@ -886,13 +886,13 @@ edit (struct line_filter *left, char const *lname, lin lline, lin llen,
|
|
||||||
switch (cmd1)
|
|
||||||
{
|
|
||||||
case '1': case '2': case 'b': case 'd': case 'l': case 'r':
|
|
||||||
- if (skip_white () != '\n')
|
|
||||||
+ if (skip_white () == '\n')
|
|
||||||
+ gotcmd = true;
|
|
||||||
+ else
|
|
||||||
{
|
|
||||||
give_help ();
|
|
||||||
flush_line ();
|
|
||||||
- continue;
|
|
||||||
}
|
|
||||||
- gotcmd = true;
|
|
||||||
break;
|
|
||||||
case '\n':
|
|
||||||
gotcmd = true;
|
|
||||||
@@ -900,7 +900,7 @@ edit (struct line_filter *left, char const *lname, lin lline, lin llen,
|
|
||||||
default:
|
|
||||||
give_help ();
|
|
||||||
flush_line ();
|
|
||||||
- continue;
|
|
||||||
+ break;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
@@ -917,7 +917,7 @@ edit (struct line_filter *left, char const *lname, lin lline, lin llen,
|
|
||||||
FALLTHROUGH;
|
|
||||||
case '\n':
|
|
||||||
give_help ();
|
|
||||||
- continue;
|
|
||||||
+ break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
@ -1,16 +0,0 @@
|
||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
|
|
||||||
iQIzBAABCgAdFiEEFV0/xQDINEhtHupnf9n8ywAL7u4FAmf14TEACgkQf9n8ywAL
|
|
||||||
7u5tEg//YI75CvWhml5WPNESJWoNVcb+ak8K5g29sHXE5RW9ZuzvEjHAy2IGpkmG
|
|
||||||
QbSC2GA3s1BhjIvrm567Xvnz5Rdn4lultZygznL/+oD4PMoantux4dF6P4KcO7jG
|
|
||||||
KNPWBF0+/gue9KeJIx4tIGXjQ7g/aAxN/U7UukD5NELrF/4KAsFSWC0PA++taGyd
|
|
||||||
R+kZNl3IX3rci0m4vMXCZX+h1td39NinLuYueOqniZhN84+kjfKfLe+EOPmpdSNr
|
|
||||||
md25Ez5vcZ7p1meHHFIRhW1xnyF4FEC5H1ePv56wMlKShtflS2/hjmQadlo+9CQn
|
|
||||||
fnotq12Yi2BEDwn/wlB9t0J4wgGVbvJM5Ie8ggK74ys77JsXbAtaTeJvCYKI/3bF
|
|
||||||
D2Xt2gI2+Xdfm7zr9xXg4ygf/AqJ0Dc1Cx0hNpgV4BRgMUjKnyp1VgE7bDZn6R4w
|
|
||||||
W2YRXMsKJQp8NpAk5+XI5El3EYoMcPuI6OQs+b+e98wcGgeeOafWjWrUliIUDln6
|
|
||||||
iTXtOBFebV0JtdSWdzNPrxT0+WbmdYSfP7qrqIgMrPHbp5cN7XjVPu6nky07N2RE
|
|
||||||
f4Q2Ny8KyCul8AskCNimYzGU0rsN1qQtDRSx2CR5ABYztwc/WY2KgXL9aGZ+eIfa
|
|
||||||
YRIpzush1GB5Bu50huAT2VCCqrk6VCg7v1vLfr3V/eszEUVhPZg=
|
|
||||||
=vkFD
|
|
||||||
-----END PGP SIGNATURE-----
|
|
||||||
17
diffutils-3.2.tar.xz.sig
Normal file
17
diffutils-3.2.tar.xz.sig
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
Version: GnuPG v1.4.11 (GNU/Linux)
|
||||||
|
|
||||||
|
iQIcBAABCAAGBQJOYPXJAAoJEH/Z/MsAC+7uxAwP/3GXgtb768UHYBBUBk+8e9ZC
|
||||||
|
vsoE3kxUwHPu1vPXHwoFPtsAqVtwKs8UEdpOBN4yrO0z7Nm1ELn58AfrfPuweflv
|
||||||
|
dJqsSVAt1lGxe596oS1+WXXKjjV6t27KVfJOypsYgqpJ5CAbjEjmeciYCa7N3MH4
|
||||||
|
KMaIX1zxOOmBiqm2SI/Uv+1ub1Bjcr7s2E2+8Y/ufmPRYsd0ushK+mHNDE/OoySn
|
||||||
|
qByLTqbU93vJzBDvdfqG9z0e8JZmVAcdHU1Z4EDISV4L6eBORUDlroBCOVwIA+qm
|
||||||
|
c9yGA9OfWy2ThAZpeBcrd/eOus/Rx3U6znPpCwPmcaAUCLJKT3O4VU5NDPSm5/xX
|
||||||
|
1vO0lcIj3iJS0AcsHI+jWjKmuufxnWT9X9vPrpwPP47V8EfNk/zJkX8yfAT8GBqv
|
||||||
|
+LF1NOfaguvZhaIz7yIwJKB1WU5G2IImuYDNU1l/NxPKad498sGuL3UxqWVznHL/
|
||||||
|
fB1mn1PQOimL48GvfuOqfw4GXGpN9YLF6fXlfjOAMDExzuuOr/nZbePvNNEjzHgK
|
||||||
|
iAlc/nHUlguBqfpEGqTjrSnT6akBHelnWjGx+/s7H7zsjAuE38IAyacxPQAEq0D9
|
||||||
|
sbaGnutDARrTVo70eIp6rdrZzcuWCtWs46Au35qPtW8m6dFJLkQDpCzIXBvj3Kff
|
||||||
|
I5UeFwrX6rRqqSD+IFpn
|
||||||
|
=ngbK
|
||||||
|
-----END PGP SIGNATURE-----
|
||||||
20
diffutils-cmp-s-empty.patch
Normal file
20
diffutils-cmp-s-empty.patch
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
diff -up diffutils-2.8.1/src/cmp.c.cmp-s-empty diffutils-2.8.1/src/cmp.c
|
||||||
|
--- diffutils-2.8.1/src/cmp.c.cmp-s-empty 2002-04-05 21:37:31.000000000 +0100
|
||||||
|
+++ diffutils-2.8.1/src/cmp.c 2010-06-25 14:56:08.464802321 +0100
|
||||||
|
@@ -316,12 +316,15 @@ main (int argc, char **argv)
|
||||||
|
|
||||||
|
/* If only a return code is needed,
|
||||||
|
and if both input descriptors are associated with plain files,
|
||||||
|
+ and if both files are larger than 0 bytes (procfs files are always 0),
|
||||||
|
conclude that the files differ if they have different sizes
|
||||||
|
and if more bytes will be compared than are in the smaller file. */
|
||||||
|
|
||||||
|
if (comparison_type == type_status
|
||||||
|
&& S_ISREG (stat_buf[0].st_mode)
|
||||||
|
- && S_ISREG (stat_buf[1].st_mode))
|
||||||
|
+ && S_ISREG (stat_buf[1].st_mode)
|
||||||
|
+ && stat_buf[0].st_size > 0
|
||||||
|
+ && stat_buf[1].st_size > 0)
|
||||||
|
{
|
||||||
|
off_t s0 = stat_buf[0].st_size - file_position (0);
|
||||||
|
off_t s1 = stat_buf[1].st_size - file_position (1);
|
||||||
49
diffutils-ppc-float.patch
Normal file
49
diffutils-ppc-float.patch
Normal file
|
|
@ -0,0 +1,49 @@
|
||||||
|
diff -up diffutils-3.2/gnulib-tests/float.c.ppc-float diffutils-3.2/gnulib-tests/float.c
|
||||||
|
--- diffutils-3.2/gnulib-tests/float.c.ppc-float 2011-08-28 12:57:24.000000000 +0100
|
||||||
|
+++ diffutils-3.2/gnulib-tests/float.c 2011-11-25 14:13:58.090442846 +0000
|
||||||
|
@@ -22,7 +22,7 @@
|
||||||
|
/* Specification. */
|
||||||
|
#include <float.h>
|
||||||
|
|
||||||
|
-#if (defined _ARCH_PPC || defined _POWER) && defined _AIX && (LDBL_MANT_DIG == 106) && defined __GNUC__
|
||||||
|
+#if (defined _ARCH_PPC || defined _POWER) && (defined _AIX || defined __linux__) && (LDBL_MANT_DIG == 106) && defined __GNUC__
|
||||||
|
const union gl_long_double_union gl_LDBL_MAX =
|
||||||
|
{ { DBL_MAX, DBL_MAX / (double)134217728UL / (double)134217728UL } };
|
||||||
|
#elif defined __i386__
|
||||||
|
diff -up diffutils-3.2/gnulib-tests/float.in.h.ppc-float diffutils-3.2/gnulib-tests/float.in.h
|
||||||
|
--- diffutils-3.2/gnulib-tests/float.in.h.ppc-float 2011-08-28 12:57:25.000000000 +0100
|
||||||
|
+++ diffutils-3.2/gnulib-tests/float.in.h 2011-11-25 14:13:58.091442827 +0000
|
||||||
|
@@ -111,7 +111,8 @@ extern const union gl_long_double_union
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* On AIX 7.1 with gcc 4.2, the values of LDBL_MIN_EXP, LDBL_MIN, LDBL_MAX are
|
||||||
|
- wrong. */
|
||||||
|
+ wrong.
|
||||||
|
+ On Linux/PowerPC with gcc 4.4, the value of LDBL_MAX is wrong. */
|
||||||
|
#if (defined _ARCH_PPC || defined _POWER) && defined _AIX && (LDBL_MANT_DIG == 106) && defined __GNUC__
|
||||||
|
# undef LDBL_MIN_EXP
|
||||||
|
# define LDBL_MIN_EXP DBL_MIN_EXP
|
||||||
|
@@ -119,6 +120,8 @@ extern const union gl_long_double_union
|
||||||
|
# define LDBL_MIN_10_EXP DBL_MIN_10_EXP
|
||||||
|
# undef LDBL_MIN
|
||||||
|
# define LDBL_MIN 2.22507385850720138309023271733240406422e-308L /* DBL_MIN = 2^-1022 */
|
||||||
|
+#endif
|
||||||
|
+#if (defined _ARCH_PPC || defined _POWER) && (defined _AIX || defined __linux__) && (LDBL_MANT_DIG == 106) && defined __GNUC__
|
||||||
|
# undef LDBL_MAX
|
||||||
|
/* LDBL_MAX is represented as { 0x7FEFFFFF, 0xFFFFFFFF, 0x7C8FFFFF, 0xFFFFFFFF }.
|
||||||
|
It is not easy to define:
|
||||||
|
diff -up diffutils-3.2/gnulib-tests/test-float.c.ppc-float diffutils-3.2/gnulib-tests/test-float.c
|
||||||
|
--- diffutils-3.2/gnulib-tests/test-float.c.ppc-float 2011-09-01 23:38:42.000000000 +0100
|
||||||
|
+++ diffutils-3.2/gnulib-tests/test-float.c 2011-11-25 14:14:04.623319695 +0000
|
||||||
|
@@ -325,7 +325,11 @@ test_long_double (void)
|
||||||
|
int n;
|
||||||
|
|
||||||
|
ASSERT (m + m > m);
|
||||||
|
+#if (defined _ARCH_PPC || defined _POWER)
|
||||||
|
+ for (n = 0; n <= 2 * DBL_MANT_DIG; n++)
|
||||||
|
+#else
|
||||||
|
for (n = 0; n <= 2 * LDBL_MANT_DIG; n++)
|
||||||
|
+#endif
|
||||||
|
{
|
||||||
|
volatile long double pow2_n = pow2l (n); /* 2^n */
|
||||||
|
volatile long double x = m + (m / pow2_n);
|
||||||
252
diffutils.spec
252
diffutils.spec
|
|
@ -1,24 +1,17 @@
|
||||||
Summary: GNU collection of diff utilities
|
Summary: A GNU collection of diff utilities
|
||||||
Name: diffutils
|
Name: diffutils
|
||||||
Version: 3.12
|
Version: 3.2
|
||||||
Release: 3%{?dist}
|
Release: 5%{?dist}
|
||||||
URL: https://www.gnu.org/software/diffutils/diffutils.html
|
Group: Applications/Text
|
||||||
Source: https://ftp.gnu.org/gnu/diffutils/diffutils-%{version}.tar.xz
|
URL: http://www.gnu.org/software/diffutils/diffutils.html
|
||||||
# upstream fixes
|
Source: ftp://ftp.gnu.org/gnu/diffutils/diffutils-%{version}.tar.xz
|
||||||
# cross compile build of 3.12 diffutils fails
|
Patch1: diffutils-cmp-s-empty.patch
|
||||||
Patch: diffutils-3.12-cross-compiler-build-fail.patch
|
Patch2: diffutils-ppc-float.patch
|
||||||
# sdiff: continue → break
|
License: GPLv2+
|
||||||
Patch: diffutils-3.12-sdiff-continue-break.patch
|
Requires(post): info
|
||||||
# sdiff: pacify gcc -flto -Wmaybe-uninitialized
|
Requires(preun): info
|
||||||
Patch: 0001-sdiff-pacify-gcc-flto-Wmaybe-uninitialized.patch
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
# sdiff: port back to C17
|
|
||||||
Patch: 0001-sdiff-port-back-to-C17.patch
|
|
||||||
License: GPL-3.0-or-later
|
|
||||||
Provides: bundled(gnulib)
|
|
||||||
BuildRequires: gcc
|
|
||||||
BuildRequires: help2man
|
BuildRequires: help2man
|
||||||
BuildRequires: autoconf, automake, texinfo
|
|
||||||
BuildRequires: make
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Diffutils includes four utilities: diff, cmp, diff3 and sdiff. Diff
|
Diffutils includes four utilities: diff, cmp, diff3 and sdiff. Diff
|
||||||
|
|
@ -34,225 +27,46 @@ to merge two files interactively.
|
||||||
Install diffutils if you need to compare text files.
|
Install diffutils if you need to compare text files.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -p1
|
%setup -q
|
||||||
|
# For 'cmp -s', compare file sizes only if both non-zero (bug #563618).
|
||||||
|
%patch1 -p1 -b .cmp-s-empty
|
||||||
|
|
||||||
# Run autoreconf for aarch64 support (bug #925256).
|
# Applied upstream gnulib fix for float test on ppc (bug #733536).
|
||||||
autoreconf
|
%patch2 -p1 -b .ppc-float
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure
|
%configure
|
||||||
make PR_PROGRAM=%{_bindir}/pr
|
make PR_PROGRAM=%{_bindir}/pr
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
make DESTDIR=$RPM_BUILD_ROOT install
|
||||||
|
|
||||||
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
|
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
|
||||||
%find_lang %{name}
|
%find_lang %{name}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
# Disable update-copyright gnulib test (bug #1239428).
|
|
||||||
>gnulib-tests/test-update-copyright.sh
|
|
||||||
make check
|
make check
|
||||||
|
|
||||||
|
%post
|
||||||
|
/sbin/install-info %{_infodir}/%{name}.info %{_infodir}/dir || :
|
||||||
|
|
||||||
|
%preun
|
||||||
|
if [ $1 = 0 ]; then
|
||||||
|
/sbin/install-info --delete %{_infodir}/%{name}.info %{_infodir}/dir || :
|
||||||
|
fi
|
||||||
|
|
||||||
|
%clean
|
||||||
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
%files -f %{name}.lang
|
%files -f %{name}.lang
|
||||||
%doc NEWS README
|
%defattr(-,root,root)
|
||||||
%license COPYING
|
%doc COPYING NEWS README
|
||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
%{_mandir}/*/*
|
%{_mandir}/*/*
|
||||||
%{_infodir}/diffutils.info*
|
%{_infodir}/diffutils.info*gz
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Wed Jul 23 2025 Fedora Release Engineering <releng@fedoraproject.org> - 3.12-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon May 05 2025 Than Ngo <than@redhat.com> - 3.12-2
|
|
||||||
- Upstream patches
|
|
||||||
* cross compile build of 3.12 diffutils fails
|
|
||||||
* sdiff: continue → break
|
|
||||||
* sdiff: pacify gcc -flto -Wmaybe-uninitialized
|
|
||||||
* sdiff: port back to C17
|
|
||||||
|
|
||||||
* Fri Apr 11 2025 Than Ngo <than@redhat.com> - 3.12-1
|
|
||||||
- Fixed rhbz#2358545, Update to 3.12
|
|
||||||
|
|
||||||
* Thu Mar 27 2025 Than Ngo <than@redhat.com> - 3.11-3
|
|
||||||
- diff does not show a unified diff when one of the file is empty
|
|
||||||
|
|
||||||
* Thu Mar 27 2025 Than Ngo <than@redhat.com> - 3.11-2
|
|
||||||
- Backported upstream patch, Fixed allocation typo leading to crash
|
|
||||||
|
|
||||||
* Thu Mar 27 2025 Than Ngo <than@redhat.com> - 3.11-1
|
|
||||||
- Fixed rhbz#2343469, Update to 3.11
|
|
||||||
|
|
||||||
* Thu Jan 16 2025 Fedora Release Engineering <releng@fedoraproject.org> - 3.10-9
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jul 30 2024 Than Ngo <than@redhat.com> - 3.10-8
|
|
||||||
- refresh patch for 'cmp -s'
|
|
||||||
|
|
||||||
* Tue Jul 23 2024 Than Ngo <than@redhat.com> - 3.10-7
|
|
||||||
- fix a regression, 'cmp -s' returns 1 even if files are identical
|
|
||||||
|
|
||||||
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.10-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.10-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.10-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.10-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 05 2023 Than Ngo <than@redhat.com> - 3.10-2
|
|
||||||
- Fix output of "diff -l -y" for non-ASCII input files
|
|
||||||
|
|
||||||
* Thu Jun 29 2023 Than Ngo <than@redhat.com> - 3.10-1
|
|
||||||
- Fix bz#2208831, update to 3.10
|
|
||||||
- Fix bz#2196671, diff -D no longer fails to output #ifndef lines introduced in 3.9
|
|
||||||
|
|
||||||
* Tue Mar 28 2023 Than Ngo <than@redhat.com> - 3.9-4
|
|
||||||
- Fix deprecated patch rpm marco
|
|
||||||
|
|
||||||
* Tue Feb 21 2023 Than Ngo <than@redhat.com> - 3.9-3
|
|
||||||
- migrated to SPDX license
|
|
||||||
|
|
||||||
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.9-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jan 16 2023 Tim Waugh <twaugh@redhat.com> - 3.9-1
|
|
||||||
- 3.9 (bug #2161117).
|
|
||||||
|
|
||||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.8-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.8-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Aug 2 2021 Tim Waugh <twaugh@redhat.com> - 3.8-1
|
|
||||||
- 3.8.
|
|
||||||
|
|
||||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.7-10
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Apr 12 2021 Tim Waugh <twaugh@redhat.com> - 3.7-9
|
|
||||||
- Handle SIGSTKSZ no longer being a constant (bug #1943016).
|
|
||||||
|
|
||||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.7-8
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Oct 8 2020 Tim Waugh <twaugh@redhat.com> - 3.7-7
|
|
||||||
- Fix from gnulib upstream, commit 175e0bc (bug #1863423).
|
|
||||||
|
|
||||||
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.7-6
|
|
||||||
- Second attempt - Rebuilt for
|
|
||||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.7-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.7-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.7-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.7-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jan 07 2019 Than Ngo <than@redhat.com> - 3.7-1
|
|
||||||
- 3.7
|
|
||||||
|
|
||||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.6-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.6-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.6-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.6-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon May 22 2017 Tim Waugh <twaugh@redhat.com> - 3.6-1
|
|
||||||
- 3.6 (bug #1453019).
|
|
||||||
|
|
||||||
* Tue Feb 21 2017 Than Ngo <than@redhat.com> - 3.5-3
|
|
||||||
- backport to fix FTBFs with GCC 7
|
|
||||||
|
|
||||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.5-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Sep 21 2016 Tim Waugh <twaugh@redhat.com> - 3.5-1
|
|
||||||
- 3.5 (bug #1365325).
|
|
||||||
|
|
||||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.3-13
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jul 6 2015 Tim Waugh <twaugh@redhat.com> - 3.3-12
|
|
||||||
- Disable update-copyright gnulib test (bug #1239428).
|
|
||||||
|
|
||||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3-11
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 3.3-10
|
|
||||||
- Rebuilt for Fedora 23 Change
|
|
||||||
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
|
|
||||||
|
|
||||||
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3-9
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 11 2014 Tom Callaway <spot@fedoraproject.org> - 3.3-8
|
|
||||||
- fix license handling
|
|
||||||
|
|
||||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3-7
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Mar 27 2014 Tim Waugh <twaugh@redhat.com> 3.3-6
|
|
||||||
- Fix --help output and man page (bug #1079076).
|
|
||||||
|
|
||||||
* Wed Dec 4 2013 Tim Waugh <twaugh@redhat.com> 3.3-5
|
|
||||||
- Applied upstream gnulib patch to avoid -Wformat-security warning
|
|
||||||
(bug #1037038).
|
|
||||||
|
|
||||||
* Wed Oct 23 2013 Tim Waugh <twaugh@redhat.com> 3.3-4
|
|
||||||
- Fixed multibyte handling logic for diff -Z (bug #1012075).
|
|
||||||
|
|
||||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Apr 29 2013 Tim Waugh <twaugh@redhat.com> 3.3-2
|
|
||||||
- Run autoreconf for aarch64 support (bug #925256).
|
|
||||||
|
|
||||||
* Tue Mar 26 2013 Tim Waugh <twaugh@redhat.com> 3.3-1
|
|
||||||
- 3.3 (bug #927560).
|
|
||||||
|
|
||||||
* Fri Feb 22 2013 Tim Waugh <twaugh@redhat.com> 3.2-13
|
|
||||||
- Fixed i18n handling of 'diff -E' (bug #914666).
|
|
||||||
|
|
||||||
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2-12
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Oct 26 2012 Tim Waugh <twaugh@redhat.com> 3.2-11
|
|
||||||
- Ported i18n patch and reinstated it (bug #870460).
|
|
||||||
|
|
||||||
* Wed Sep 19 2012 Tim Waugh <twaugh@redhat.com> 3.2-10
|
|
||||||
- Fixed license as current source says GPLv3+.
|
|
||||||
|
|
||||||
* Mon Jul 23 2012 Tim Waugh <twaugh@redhat.com> 3.2-9
|
|
||||||
- Fixed build failure.
|
|
||||||
|
|
||||||
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2-8
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon May 21 2012 Tim Waugh <twaugh@redhat.com> 3.2-7
|
|
||||||
- Provides bundled(gnulib) (bug #821751).
|
|
||||||
|
|
||||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Dec 8 2011 Tim Waugh <twaugh@redhat.com> 3.2-5
|
* Thu Dec 8 2011 Tim Waugh <twaugh@redhat.com> 3.2-5
|
||||||
- Fix bug #747969 again.
|
- Fix bug #747969 again.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
summary: Basic smoke test
|
|
||||||
discover:
|
|
||||||
how: fmf
|
|
||||||
execute:
|
|
||||||
how: tmt
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
SHA512 (diffutils-3.12.tar.xz) = 10b17cf1dcdfa9ca0e5db91d62c4a079ebe9fd7eafa3aaebd4eb7e6206e4d753f348496622aa281e1bd7f7fcde65ce4a886dcc4acbb59332ef980f224197b4e4
|
26ff64c332429c830c154be46b393382 diffutils-3.2.tar.xz
|
||||||
|
|
|
||||||
|
|
@ -1,63 +0,0 @@
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Makefile of /CoreOS/diffutils/Regression/cmp-s-returns-1-even-if-files-are-identical
|
|
||||||
# Description: Test for cmp -s returns 1 even if files are identical
|
|
||||||
# Author: Jeffrey Bastian <jbastian@redhat.com>
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Copyright (c) 2010 Red Hat, Inc. All rights reserved.
|
|
||||||
#
|
|
||||||
# This copyrighted material is made available to anyone wishing
|
|
||||||
# to use, modify, copy, or redistribute it subject to the terms
|
|
||||||
# and conditions of the GNU General Public License version 2.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be
|
|
||||||
# useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
||||||
# PURPOSE. See the GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public
|
|
||||||
# License along with this program; if not, write to the Free
|
|
||||||
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
||||||
# Boston, MA 02110-1301, USA.
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
export TEST=/CoreOS/diffutils/Regression/cmp-s-returns-1-even-if-files-are-identical
|
|
||||||
export TESTVERSION=1.0
|
|
||||||
|
|
||||||
BUILT_FILES=
|
|
||||||
|
|
||||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE
|
|
||||||
|
|
||||||
.PHONY: all install download clean
|
|
||||||
|
|
||||||
run: $(FILES) build
|
|
||||||
./runtest.sh
|
|
||||||
|
|
||||||
build: $(BUILT_FILES)
|
|
||||||
chmod a+x runtest.sh
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f *~ $(BUILT_FILES)
|
|
||||||
|
|
||||||
|
|
||||||
include /usr/share/rhts/lib/rhts-make.include
|
|
||||||
|
|
||||||
$(METADATA): Makefile
|
|
||||||
@echo "Owner: Jeffrey Bastian <jbastian@redhat.com>" > $(METADATA)
|
|
||||||
@echo "Name: $(TEST)" >> $(METADATA)
|
|
||||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
|
||||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
|
||||||
@echo "Description: Test for cmp -s returns 1 even if files are identical" >> $(METADATA)
|
|
||||||
@echo "Type: Regression" >> $(METADATA)
|
|
||||||
@echo "TestTime: 5m" >> $(METADATA)
|
|
||||||
@echo "RunFor: diffutils" >> $(METADATA)
|
|
||||||
@echo "Requires: diffutils" >> $(METADATA)
|
|
||||||
@echo "Priority: Normal" >> $(METADATA)
|
|
||||||
@echo "License: GPLv2" >> $(METADATA)
|
|
||||||
@echo "Confidential: no" >> $(METADATA)
|
|
||||||
@echo "Destructive: no" >> $(METADATA)
|
|
||||||
|
|
||||||
rhts-lint $(METADATA)
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
PURPOSE of /CoreOS/diffutils/Regression/cmp-s-returns-1-even-if-files-are-identical
|
|
||||||
Description: Test for cmp -s returns 1 even if files are identical
|
|
||||||
Author: Jeffrey Bastian <jbastian@redhat.com>
|
|
||||||
Bug summary: cmp -s returns 1 even if files are identical
|
|
||||||
|
|
||||||
Description:
|
|
||||||
'cmp -s' can return 1 even if files are identical, for example, if comparing
|
|
||||||
a file from /proc with a copy of that file in /tmp, since all files in
|
|
||||||
/proc have a size of 0 bytes.
|
|
||||||
|
|
@ -1,17 +0,0 @@
|
||||||
summary: Test for cmp -s returns 1 even if files are identical
|
|
||||||
description: "Bug summary: cmp -s returns 1 even if files are identical\n\nDescription:\n\
|
|
||||||
'cmp -s' can return 1 even if files are identical, for example, if comparing\n\
|
|
||||||
a file from /proc with a copy of that file in /tmp, since all files in\n/proc
|
|
||||||
have a size of 0 bytes.\n"
|
|
||||||
contact: Jeffrey Bastian <jbastian@redhat.com>
|
|
||||||
component:
|
|
||||||
- diffutils
|
|
||||||
test: ./runtest.sh
|
|
||||||
framework: beakerlib
|
|
||||||
recommend:
|
|
||||||
- diffutils
|
|
||||||
duration: 5m
|
|
||||||
extra-summary:
|
|
||||||
/CoreOS/diffutils/Regression/cmp-s-returns-1-even-if-files-are-identical
|
|
||||||
extra-task:
|
|
||||||
/CoreOS/diffutils/Regression/cmp-s-returns-1-even-if-files-are-identical
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# runtest.sh of /CoreOS/diffutils/Regression/cmp-s-returns-1-even-if-files-are-identical
|
|
||||||
# Description: Test for cmp -s returns 1 even if files are identical
|
|
||||||
# Author: Jeffrey Bastian <jbastian@redhat.com>
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Copyright (c) 2010 Red Hat, Inc. All rights reserved.
|
|
||||||
#
|
|
||||||
# This copyrighted material is made available to anyone wishing
|
|
||||||
# to use, modify, copy, or redistribute it subject to the terms
|
|
||||||
# and conditions of the GNU General Public License version 2.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be
|
|
||||||
# useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
||||||
# PURPOSE. See the GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public
|
|
||||||
# License along with this program; if not, write to the Free
|
|
||||||
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
||||||
# Boston, MA 02110-1301, USA.
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
# Include rhts environment
|
|
||||||
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
|
||||||
|
|
||||||
PACKAGE="diffutils"
|
|
||||||
#set -x
|
|
||||||
|
|
||||||
rlJournalStart
|
|
||||||
rlPhaseStartSetup
|
|
||||||
rlAssertRpm $PACKAGE
|
|
||||||
rlRun "TmpDir=\`mktemp -d\`" 0 "Creating tmp directory"
|
|
||||||
rlPhaseEnd
|
|
||||||
|
|
||||||
rlPhaseStartTest
|
|
||||||
rlAssertExists $TmpDir
|
|
||||||
rlRun "cp /proc/version $TmpDir" 0 "Copy /proc/version to tmp directory"
|
|
||||||
rlRun "cmp -s /proc/version $TmpDir/version" 0 "Compare /proc/version to tmp copy"
|
|
||||||
rlPhaseEnd
|
|
||||||
|
|
||||||
rlPhaseStartCleanup
|
|
||||||
rlRun "rm -fr $TmpDir" 0 "Removing tmp directory"
|
|
||||||
rlPhaseEnd
|
|
||||||
rlJournalEnd
|
|
||||||
rlJournalPrintText
|
|
||||||
|
|
@ -1,64 +0,0 @@
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Makefile of /CoreOS/diffutils/Regression/diff-Z-hangs
|
|
||||||
# Description: Test for diffutils to check if comparing two files using diff -Z with mixed line endings doesn't hang
|
|
||||||
# Author: Filip Holec <fholec@redhat.com>
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Copyright (c) 2014 Red Hat, Inc. All rights reserved.
|
|
||||||
#
|
|
||||||
# This copyrighted material is made available to anyone wishing
|
|
||||||
# to use, modify, copy, or redistribute it subject to the terms
|
|
||||||
# and conditions of the GNU General Public License version 2.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be
|
|
||||||
# useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
||||||
# PURPOSE. See the GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public
|
|
||||||
# License along with this program; if not, write to the Free
|
|
||||||
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
||||||
# Boston, MA 02110-1301, USA.
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
export TEST=/CoreOS/diffutils/Regression/diff-Z-hangs
|
|
||||||
export TESTVERSION=1.0
|
|
||||||
|
|
||||||
BUILT_FILES=
|
|
||||||
|
|
||||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE
|
|
||||||
|
|
||||||
.PHONY: all install download clean
|
|
||||||
|
|
||||||
run: $(FILES) build
|
|
||||||
./runtest.sh
|
|
||||||
|
|
||||||
build: $(BUILT_FILES)
|
|
||||||
test -x runtest.sh || chmod a+x runtest.sh
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f *~ $(BUILT_FILES)
|
|
||||||
|
|
||||||
|
|
||||||
include /usr/share/rhts/lib/rhts-make.include
|
|
||||||
|
|
||||||
$(METADATA): Makefile
|
|
||||||
@echo "Owner: Filip Holec <fholec@redhat.com>" > $(METADATA)
|
|
||||||
@echo "Name: $(TEST)" >> $(METADATA)
|
|
||||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
|
||||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
|
||||||
@echo "Description: Test for diffutils to check if comparing two files using diff -Z with mixed line endings doesn't hang" >> $(METADATA)
|
|
||||||
@echo "Type: Regression" >> $(METADATA)
|
|
||||||
@echo "TestTime: 5m" >> $(METADATA)
|
|
||||||
@echo "RunFor: diffutils" >> $(METADATA)
|
|
||||||
@echo "Requires: diffutils" >> $(METADATA)
|
|
||||||
@echo "Priority: Normal" >> $(METADATA)
|
|
||||||
@echo "License: GPLv2" >> $(METADATA)
|
|
||||||
@echo "Confidential: no" >> $(METADATA)
|
|
||||||
@echo "Destructive: no" >> $(METADATA)
|
|
||||||
@echo "Releases: RHEL7" >> $(METADATA)
|
|
||||||
|
|
||||||
rhts-lint $(METADATA)
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
PURPOSE of /CoreOS/diffutils/Regression/diff-Z-hangs
|
|
||||||
Description: Test for diffutils to check if comparing two files using diff -Z with mixed line endings doesn't hang
|
|
||||||
Author: Filip Holec <fholec@redhat.com>
|
|
||||||
Bug summary: diff -Z hangs
|
|
||||||
|
|
@ -1,13 +0,0 @@
|
||||||
summary: Test for diffutils to check if comparing two files using diff -Z with
|
|
||||||
mixed line endings doesn't hang
|
|
||||||
description: "Bug summary: diff -Z hangs\n"
|
|
||||||
contact: Filip Holec <fholec@redhat.com>
|
|
||||||
component:
|
|
||||||
- diffutils
|
|
||||||
test: ./runtest.sh
|
|
||||||
framework: beakerlib
|
|
||||||
recommend:
|
|
||||||
- diffutils
|
|
||||||
duration: 5m
|
|
||||||
extra-summary: /CoreOS/diffutils/Regression/diff-Z-hangs
|
|
||||||
extra-task: /CoreOS/diffutils/Regression/diff-Z-hangs
|
|
||||||
|
|
@ -1,55 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
# vim: dict=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# runtest.sh of /CoreOS/diffutils/Regression/diff-Z-hangs
|
|
||||||
# Description: Test for diffutils to check if comparing two files using diff -Z with mixed line endings doesn't hang
|
|
||||||
# Author: Filip Holec <fholec@redhat.com>
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Copyright (c) 2014 Red Hat, Inc. All rights reserved.
|
|
||||||
#
|
|
||||||
# This copyrighted material is made available to anyone wishing
|
|
||||||
# to use, modify, copy, or redistribute it subject to the terms
|
|
||||||
# and conditions of the GNU General Public License version 2.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be
|
|
||||||
# useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
||||||
# PURPOSE. See the GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public
|
|
||||||
# License along with this program; if not, write to the Free
|
|
||||||
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
||||||
# Boston, MA 02110-1301, USA.
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
# Include Beaker environment
|
|
||||||
. /usr/share/beakerlib/beakerlib.sh
|
|
||||||
|
|
||||||
PACKAGE="diffutils"
|
|
||||||
|
|
||||||
rlJournalStart
|
|
||||||
rlPhaseStartSetup
|
|
||||||
rlAssertRpm $PACKAGE
|
|
||||||
rlRun "TmpDir=\$(mktemp -d)" 0 "Creating tmp directory"
|
|
||||||
rlRun "pushd $TmpDir"
|
|
||||||
rlPhaseEnd
|
|
||||||
|
|
||||||
rlPhaseStartTest
|
|
||||||
rlRun "diff -Z <(printf 'a\nb\n') <(printf 'a\nb\n'); echo $?" \
|
|
||||||
0 "First simple test"
|
|
||||||
rlRun "timeout 10s diff -Z <(printf 'a\r\nb\n') <(printf 'a\nb\r\n')" \
|
|
||||||
0 "Main test, should not timeout (124)"
|
|
||||||
rlRun "timeout 10s diff -Z <(echo 'a') <(echo -n 'a')" \
|
|
||||||
0 "Second test, should not timeout (124)"
|
|
||||||
rlPhaseEnd
|
|
||||||
|
|
||||||
rlPhaseStartCleanup
|
|
||||||
rlRun "popd"
|
|
||||||
rlRun "rm -r $TmpDir" 0 "Removing tmp directory"
|
|
||||||
rlPhaseEnd
|
|
||||||
rlJournalPrintText
|
|
||||||
rlJournalEnd
|
|
||||||
|
|
@ -1,61 +0,0 @@
|
||||||
# Makefile - diff-hang-long-files
|
|
||||||
# Author: Michal Fabry <mfabry@redhat.com>
|
|
||||||
# Location: /CoreOS/diffutils/Regression/diff-hang-long-files/Makefile
|
|
||||||
|
|
||||||
# Description: Diff appears to hang in long file
|
|
||||||
|
|
||||||
# Copyright (c) 2009 Red Hat, Inc. All rights reserved. This copyrighted material
|
|
||||||
# is made available to anyone wishing to use, modify, copy, or
|
|
||||||
# redistribute it subject to the terms and conditions of the GNU General
|
|
||||||
# Public License v.2.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
||||||
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
||||||
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with this program; if not, write to the Free Software
|
|
||||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
TOPLEVEL_NAMESPACE=/CoreOS
|
|
||||||
PACKAGE_NAME=diffutils
|
|
||||||
RELATIVE_PATH=Regression/diff-hang-long-files
|
|
||||||
|
|
||||||
export TEST=$(TOPLEVEL_NAMESPACE)/$(PACKAGE_NAME)/$(RELATIVE_PATH)
|
|
||||||
export TESTVERSION=1.0
|
|
||||||
|
|
||||||
BUILT_FILES=
|
|
||||||
|
|
||||||
FILES=$(METADATA) runtest.sh Makefile
|
|
||||||
|
|
||||||
.PHONY: all install download clean
|
|
||||||
|
|
||||||
run: $(FILES) build
|
|
||||||
./runtest.sh
|
|
||||||
|
|
||||||
build: $(BUILT_FILES)
|
|
||||||
chmod a+x ./runtest.sh
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f *~ $(BUILT_FILES)
|
|
||||||
|
|
||||||
|
|
||||||
include /usr/share/rhts/lib/rhts-make.include
|
|
||||||
|
|
||||||
|
|
||||||
$(METADATA): Makefile
|
|
||||||
@touch $(METADATA)
|
|
||||||
@echo "Owner: Michal Fabry <mfabry@redhat.com>" > $(METADATA)
|
|
||||||
@echo "Name: $(TEST)" >> $(METADATA)
|
|
||||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
|
||||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
|
||||||
@echo "Description: Diff appears to hang in long file" >> $(METADATA)
|
|
||||||
@echo "Type: Regression" >> $(METADATA)
|
|
||||||
@echo "TestTime: 5m" >> $(METADATA)
|
|
||||||
@echo "RunFor: $(PACKAGE_NAME)" >> $(METADATA)
|
|
||||||
@echo "Requires: $(PACKAGE_NAME) words time" >> $(METADATA)
|
|
||||||
@echo "License: GPLv2" >> $(METADATA)
|
|
||||||
|
|
||||||
rhts-lint $(METADATA)
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
Test Name: diff-hang-long-files
|
|
||||||
Author: Michal Fabry <mfabry@redhat.com>
|
|
||||||
Location: /CoreOS/diffutils/Regression/diff-hang-long-files
|
|
||||||
|
|
||||||
Short Description: Diff appears to hang in long file
|
|
||||||
|
|
||||||
|
|
||||||
Long Description:
|
|
||||||
|
|
||||||
Running the "diff -bBw" command on a very large input file (eg 250 MB), in a multi-byte locale (ie UTF-8), took a very long time to complete, if at all. In a reported case, a diff ran for multiple days and did not complete. In certain situations, this could cause 100% CPU usage.
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
||||||
summary: Diff appears to hang in long file
|
|
||||||
description: "Test Name: diff-hang-long-files\nAuthor: Michal Fabry <mfabry@redhat.com>\n\
|
|
||||||
Location: /CoreOS/diffutils/Regression/diff-hang-long-files\n\nShort Description:
|
|
||||||
Diff appears to hang in long file\n\n\nLong Description:\n\nRunning the \"diff
|
|
||||||
-bBw\" command on a very large input file (eg 250 MB), in a multi-byte locale
|
|
||||||
(ie UTF-8), took a very long time to complete, if at all. In a reported case,
|
|
||||||
a diff ran for multiple days and did not complete. In certain situations, this
|
|
||||||
could cause 100% CPU usage.\n"
|
|
||||||
contact: Michal Fabry <mfabry@redhat.com>
|
|
||||||
component:
|
|
||||||
- diffutils
|
|
||||||
test: ./runtest.sh
|
|
||||||
framework: beakerlib
|
|
||||||
recommend:
|
|
||||||
- diffutils
|
|
||||||
- words
|
|
||||||
- time
|
|
||||||
duration: 5m
|
|
||||||
extra-summary: /CoreOS/diffutils/Regression/diff-hang-long-files
|
|
||||||
extra-task: /CoreOS/diffutils/Regression/diff-hang-long-files
|
|
||||||
|
|
@ -1,78 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
# Author: Michal Fabry <mfabry@redhat.com>
|
|
||||||
|
|
||||||
# Copyright (c) 2009 Red Hat, Inc. All rights reserved. This copyrighted material
|
|
||||||
# is made available to anyone wishing to use, modify, copy, or
|
|
||||||
# redistribute it subject to the terms and conditions of the GNU General
|
|
||||||
# Public License v.2.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
||||||
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
||||||
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with this program; if not, write to the Free Software
|
|
||||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
||||||
|
|
||||||
# Include Beaker environment
|
|
||||||
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
|
||||||
|
|
||||||
|
|
||||||
rlJournalStart
|
|
||||||
|
|
||||||
# ===================================================================
|
|
||||||
# Setup - ABORT if some assert fails
|
|
||||||
# ===================================================================
|
|
||||||
rlPhaseStartSetup Setup
|
|
||||||
|
|
||||||
set -o pipefail
|
|
||||||
|
|
||||||
function count_lines() {
|
|
||||||
[ ! -r "$1" ] && return 1
|
|
||||||
wc -l "$1" | sed "s/^\s*\([0-9]\+\)\s\+.*$/\1/"
|
|
||||||
}
|
|
||||||
|
|
||||||
rlPhaseEnd
|
|
||||||
|
|
||||||
|
|
||||||
# ===================================================================
|
|
||||||
# Start the test
|
|
||||||
# ===================================================================
|
|
||||||
# -------------------------------------------------------------------
|
|
||||||
# Create connection
|
|
||||||
rlPhaseStartTest "Create big file"
|
|
||||||
# -------------------------------------------------------------------
|
|
||||||
|
|
||||||
log=$( mktemp /tmp/log.XXXXXX )
|
|
||||||
|
|
||||||
rlRun "tr -d \"'\" <words | xargs echo >long-line" 0 "Create big file part 1"
|
|
||||||
rlRun "for a in \$(seq 30); do cat long-line; done >long-lines" 0 "Create big file part 2"
|
|
||||||
rlAssertExists 'long-lines'
|
|
||||||
|
|
||||||
# -------------------------------------------------------------------
|
|
||||||
# Test /usr/sbin/ss output
|
|
||||||
rlPhaseEnd; rlPhaseStartTest "Test diff"
|
|
||||||
# -------------------------------------------------------------------
|
|
||||||
|
|
||||||
log2=$( mktemp /tmp/log.XXXXXX )
|
|
||||||
now=$(date '+%s')
|
|
||||||
rlRun "diff -bBw long-lines <(sed -e 's/ / /' long-lines) >/dev/null"
|
|
||||||
rlAssertGreater "Less than 150 seconds" 150 `expr $now - $(date '+%s')`
|
|
||||||
|
|
||||||
rlPhaseEnd
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ===================================================================
|
|
||||||
# Start the cleanup
|
|
||||||
# ===================================================================
|
|
||||||
rlPhaseStartCleanup Cleanup
|
|
||||||
|
|
||||||
rm -f $log $log2 long-line long-lines
|
|
||||||
rlAssert0 "Remove the log" $?
|
|
||||||
|
|
||||||
rlPhaseEnd
|
|
||||||
|
|
||||||
#rlCreateLogFromJournal | tee $OUTPUTFILE
|
|
||||||
rlJournalPrintText
|
|
||||||
rlJournalEnd
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,63 +0,0 @@
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Makefile of /CoreOS/diffutils/Regression/diff-w-b-doesn-t-treat-U3000-IDEOGRAPHIC-SPACE-as-space
|
|
||||||
# Description: Test for diffutils to ensure U3000 ideographic space is treated as space when used -b or -w options
|
|
||||||
# Author: Filip Holec <fholec@redhat.com>
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Copyright (c) 2013 Red Hat, Inc. All rights reserved.
|
|
||||||
#
|
|
||||||
# This copyrighted material is made available to anyone wishing
|
|
||||||
# to use, modify, copy, or redistribute it subject to the terms
|
|
||||||
# and conditions of the GNU General Public License version 2.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be
|
|
||||||
# useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
||||||
# PURPOSE. See the GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public
|
|
||||||
# License along with this program; if not, write to the Free
|
|
||||||
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
||||||
# Boston, MA 02110-1301, USA.
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
export TEST=/CoreOS/diffutils/Regression/diff-w-b-doesn-t-treat-U3000-IDEOGRAPHIC-SPACE-as-space
|
|
||||||
export TESTVERSION=1.0
|
|
||||||
|
|
||||||
BUILT_FILES=
|
|
||||||
|
|
||||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE a b
|
|
||||||
|
|
||||||
.PHONY: all install download clean
|
|
||||||
|
|
||||||
run: $(FILES) build
|
|
||||||
./runtest.sh
|
|
||||||
|
|
||||||
build: $(BUILT_FILES)
|
|
||||||
test -x runtest.sh || chmod a+x runtest.sh
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f *~ $(BUILT_FILES)
|
|
||||||
|
|
||||||
|
|
||||||
include /usr/share/rhts/lib/rhts-make.include
|
|
||||||
|
|
||||||
$(METADATA): Makefile
|
|
||||||
@echo "Owner: Filip Holec <fholec@redhat.com>" > $(METADATA)
|
|
||||||
@echo "Name: $(TEST)" >> $(METADATA)
|
|
||||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
|
||||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
|
||||||
@echo "Description: Test for diffutils to ensure U3000 ideographic space is treated as space when used -b or -w options" >> $(METADATA)
|
|
||||||
@echo "Type: Regression" >> $(METADATA)
|
|
||||||
@echo "TestTime: 5m" >> $(METADATA)
|
|
||||||
@echo "RunFor: diffutils" >> $(METADATA)
|
|
||||||
@echo "Requires: diffutils" >> $(METADATA)
|
|
||||||
@echo "Priority: Normal" >> $(METADATA)
|
|
||||||
@echo "License: GPLv2" >> $(METADATA)
|
|
||||||
@echo "Confidential: no" >> $(METADATA)
|
|
||||||
@echo "Destructive: no" >> $(METADATA)
|
|
||||||
|
|
||||||
rhts-lint $(METADATA)
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
PURPOSE of /CoreOS/diffutils/Regression/diff-w-b-doesn-t-treat-U3000-IDEOGRAPHIC-SPACE-as-space
|
|
||||||
Description: Test for diffutils to ensure U3000 ideographic space is treated as space when used -b or -w options
|
|
||||||
Author: Filip Holec <fholec@redhat.com>
|
|
||||||
Bug summary: diff -w/-b doesn't treat U3000 (IDEOGRAPHIC SPACE) as space
|
|
||||||
|
|
||||||
Test for diffutils to ensure U3000 ideographic space is treated as space when used -b or -w options
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
a b
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
a b
|
|
||||||
|
|
@ -1,17 +0,0 @@
|
||||||
summary: Test for diffutils to ensure U3000 ideographic space is treated as
|
|
||||||
space when used -b or -w options
|
|
||||||
description: "Bug summary: diff -w/-b doesn't treat U3000 (IDEOGRAPHIC SPACE) as space\n\
|
|
||||||
\nTest for diffutils to ensure U3000 ideographic space is treated as space when
|
|
||||||
used -b or -w options\n"
|
|
||||||
contact: Filip Holec <fholec@redhat.com>
|
|
||||||
component:
|
|
||||||
- diffutils
|
|
||||||
test: ./runtest.sh
|
|
||||||
framework: beakerlib
|
|
||||||
recommend:
|
|
||||||
- diffutils
|
|
||||||
duration: 5m
|
|
||||||
extra-summary:
|
|
||||||
/CoreOS/diffutils/Regression/diff-w-b-doesn-t-treat-U3000-IDEOGRAPHIC-SPACE-as-space
|
|
||||||
extra-task:
|
|
||||||
/CoreOS/diffutils/Regression/diff-w-b-doesn-t-treat-U3000-IDEOGRAPHIC-SPACE-as-space
|
|
||||||
|
|
@ -1,57 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
# vim: dict=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# runtest.sh of /CoreOS/diffutils/Regression/diff-w-b-doesn-t-treat-U3000-IDEOGRAPHIC-SPACE-as-space
|
|
||||||
# Description: Test for diffutils to ensure U3000 ideographic space is treated as space when used -b or -w options
|
|
||||||
# Author: Filip Holec <fholec@redhat.com>
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Copyright (c) 2013 Red Hat, Inc. All rights reserved.
|
|
||||||
#
|
|
||||||
# This copyrighted material is made available to anyone wishing
|
|
||||||
# to use, modify, copy, or redistribute it subject to the terms
|
|
||||||
# and conditions of the GNU General Public License version 2.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be
|
|
||||||
# useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
||||||
# PURPOSE. See the GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public
|
|
||||||
# License along with this program; if not, write to the Free
|
|
||||||
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
||||||
# Boston, MA 02110-1301, USA.
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
# Include Beaker environment
|
|
||||||
. /usr/share/beakerlib/beakerlib.sh
|
|
||||||
|
|
||||||
PACKAGE="diffutils"
|
|
||||||
|
|
||||||
# This test requires a non-C locale. Lets make it predictable
|
|
||||||
export LC_ALL=en_US.utf8
|
|
||||||
|
|
||||||
rlJournalStart
|
|
||||||
rlPhaseStartSetup
|
|
||||||
rlAssertRpm $PACKAGE
|
|
||||||
rlRun "TmpDir=\$(mktemp -d)" 0 "Creating tmp directory"
|
|
||||||
rlRun "cp a b $TmpDir" 0 "Copy files to $TmpDir"
|
|
||||||
rlRun "pushd $TmpDir"
|
|
||||||
rlPhaseEnd
|
|
||||||
|
|
||||||
rlPhaseStartTest
|
|
||||||
rlRun "diff -w a b >out" 0 "diff with -w option"
|
|
||||||
rlRun "[ ! -s out ]" 0 "Output should be empty"
|
|
||||||
rlRun "diff -b a b >out" 0 "diff with -b option"
|
|
||||||
rlRun "[ ! -s out ]" 0 "Output should be empty"
|
|
||||||
rlPhaseEnd
|
|
||||||
|
|
||||||
rlPhaseStartCleanup
|
|
||||||
rlRun "popd"
|
|
||||||
rlRun "rm -r $TmpDir" 0 "Removing tmp directory"
|
|
||||||
rlPhaseEnd
|
|
||||||
rlJournalPrintText
|
|
||||||
rlJournalEnd
|
|
||||||
|
|
@ -1,63 +0,0 @@
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Makefile of /CoreOS/diffutils/Regression/sdiff-does-not-recognize-E-option
|
|
||||||
# Description: Test for sdiff does not recognize -E option
|
|
||||||
# Author: Martin Kyral <mkyral@redhat.com>
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Copyright (c) 2012 Red Hat, Inc. All rights reserved.
|
|
||||||
#
|
|
||||||
# This copyrighted material is made available to anyone wishing
|
|
||||||
# to use, modify, copy, or redistribute it subject to the terms
|
|
||||||
# and conditions of the GNU General Public License version 2.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be
|
|
||||||
# useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
||||||
# PURPOSE. See the GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public
|
|
||||||
# License along with this program; if not, write to the Free
|
|
||||||
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
||||||
# Boston, MA 02110-1301, USA.
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
export TEST=/CoreOS/diffutils/Regression/sdiff-does-not-recognize-E-option
|
|
||||||
export TESTVERSION=1.0
|
|
||||||
|
|
||||||
BUILT_FILES=
|
|
||||||
|
|
||||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE file1 file2
|
|
||||||
|
|
||||||
.PHONY: all install download clean
|
|
||||||
|
|
||||||
run: $(FILES) build
|
|
||||||
./runtest.sh
|
|
||||||
|
|
||||||
build: $(BUILT_FILES)
|
|
||||||
test -x runtest.sh || chmod a+x runtest.sh
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f *~ $(BUILT_FILES)
|
|
||||||
|
|
||||||
|
|
||||||
include /usr/share/rhts/lib/rhts-make.include
|
|
||||||
|
|
||||||
$(METADATA): Makefile
|
|
||||||
@echo "Owner: Martin Kyral <mkyral@redhat.com>" > $(METADATA)
|
|
||||||
@echo "Name: $(TEST)" >> $(METADATA)
|
|
||||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
|
||||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
|
||||||
@echo "Description: Test for sdiff does not recognize -E option" >> $(METADATA)
|
|
||||||
@echo "Type: Regression" >> $(METADATA)
|
|
||||||
@echo "TestTime: 10m" >> $(METADATA)
|
|
||||||
@echo "RunFor: diffutils" >> $(METADATA)
|
|
||||||
@echo "Requires: diffutils" >> $(METADATA)
|
|
||||||
@echo "Priority: Normal" >> $(METADATA)
|
|
||||||
@echo "License: GPLv2" >> $(METADATA)
|
|
||||||
@echo "Confidential: yes" >> $(METADATA)
|
|
||||||
@echo "Destructive: no" >> $(METADATA)
|
|
||||||
|
|
||||||
rhts-lint $(METADATA)
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
PURPOSE of /CoreOS/diffutils/Regression/sdiff-does-not-recognize-E-option
|
|
||||||
Description: Test for sdiff does not recognize -E option
|
|
||||||
Author: Martin Kyral <mkyral@redhat.com>
|
|
||||||
Bug summary: sdiff does not recognize -E option
|
|
||||||
|
|
||||||
The test runs sdiff -E on two files differing just in use of tab/8 spaces. sdiff shall not fail and shall return that the files are identical.
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
aaa
|
|
||||||
bbb
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
aaa
|
|
||||||
bbb
|
|
||||||
|
|
@ -1,14 +0,0 @@
|
||||||
summary: Test for sdiff does not recognize -E option
|
|
||||||
description: "Bug summary: sdiff does not recognize -E option\n\nThe test runs sdiff
|
|
||||||
-E on two files differing just in use of tab/8 spaces. sdiff shall not fail and
|
|
||||||
shall return that the files are identical.\n"
|
|
||||||
contact: Martin Kyral <mkyral@redhat.com>
|
|
||||||
component:
|
|
||||||
- diffutils
|
|
||||||
test: ./runtest.sh
|
|
||||||
framework: beakerlib
|
|
||||||
recommend:
|
|
||||||
- diffutils
|
|
||||||
duration: 10m
|
|
||||||
extra-summary: /CoreOS/diffutils/Regression/sdiff-does-not-recognize-E-option
|
|
||||||
extra-task: /CoreOS/diffutils/Regression/sdiff-does-not-recognize-E-option
|
|
||||||
|
|
@ -1,51 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
# vim: dict=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# runtest.sh of /CoreOS/diffutils/Regression/sdiff-does-not-recognize-E-option
|
|
||||||
# Description: Test for sdiff does not recognize -E option
|
|
||||||
# Author: Martin Kyral <mkyral@redhat.com>
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Copyright (c) 2012 Red Hat, Inc. All rights reserved.
|
|
||||||
#
|
|
||||||
# This copyrighted material is made available to anyone wishing
|
|
||||||
# to use, modify, copy, or redistribute it subject to the terms
|
|
||||||
# and conditions of the GNU General Public License version 2.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be
|
|
||||||
# useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
||||||
# PURPOSE. See the GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public
|
|
||||||
# License along with this program; if not, write to the Free
|
|
||||||
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
||||||
# Boston, MA 02110-1301, USA.
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
# Include Beaker environment
|
|
||||||
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
|
||||||
|
|
||||||
PACKAGE="diffutils"
|
|
||||||
|
|
||||||
rlJournalStart
|
|
||||||
rlPhaseStartSetup
|
|
||||||
rlAssertRpm $PACKAGE
|
|
||||||
rlRun "TmpDir=\$(mktemp -d)" 0 "Creating tmp directory"
|
|
||||||
rlRun "cp file1 file2 $TmpDir"
|
|
||||||
rlRun "pushd $TmpDir"
|
|
||||||
rlPhaseEnd
|
|
||||||
|
|
||||||
rlPhaseStartTest
|
|
||||||
rlRun "sdiff -E file1 file2"
|
|
||||||
rlPhaseEnd
|
|
||||||
|
|
||||||
rlPhaseStartCleanup
|
|
||||||
rlRun "popd"
|
|
||||||
rlRun "rm -r $TmpDir" 0 "Removing tmp directory"
|
|
||||||
rlPhaseEnd
|
|
||||||
rlJournalPrintText
|
|
||||||
rlJournalEnd
|
|
||||||
|
|
@ -1,85 +0,0 @@
|
||||||
# Copyright (c) 2006 Red Hat, Inc. All rights reserved. This copyrighted material
|
|
||||||
# is made available to anyone wishing to use, modify, copy, or
|
|
||||||
# redistribute it subject to the terms and conditions of the GNU General
|
|
||||||
# Public License v.2.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
||||||
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
||||||
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with this program; if not, write to the Free Software
|
|
||||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
||||||
#
|
|
||||||
# Author: bpeck@redhat.com
|
|
||||||
|
|
||||||
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
|
|
||||||
# Example Makefile for RHTS #
|
|
||||||
# This example is geared towards a test for a specific package #
|
|
||||||
# It does most of the work for you, but may require further coding #
|
|
||||||
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
|
|
||||||
|
|
||||||
# The toplevel namespace within which the test lives.
|
|
||||||
# FIXME: You will need to change this:
|
|
||||||
TOPLEVEL_NAMESPACE=CoreOS
|
|
||||||
|
|
||||||
# The name of the package under test:
|
|
||||||
# FIXME: you wil need to change this:
|
|
||||||
PACKAGE_NAME=diffutils
|
|
||||||
|
|
||||||
# The path of the test below the package:
|
|
||||||
# FIXME: you wil need to change this:
|
|
||||||
RELATIVE_PATH=whitespace
|
|
||||||
|
|
||||||
# Version of the Test. Used with make tag.
|
|
||||||
export TESTVERSION=1.1
|
|
||||||
|
|
||||||
# The combined namespace of the test.
|
|
||||||
export TEST=/$(TOPLEVEL_NAMESPACE)/$(PACKAGE_NAME)/$(RELATIVE_PATH)
|
|
||||||
|
|
||||||
|
|
||||||
# A phony target is one that is not really the name of a file.
|
|
||||||
# It is just a name for some commands to be executed when you
|
|
||||||
# make an explicit request. There are two reasons to use a
|
|
||||||
# phony target: to avoid a conflict with a file of the same
|
|
||||||
# name, and to improve performance.
|
|
||||||
.PHONY: all install download clean
|
|
||||||
|
|
||||||
# executables to be built should be added here, they will be generated on the system under test.
|
|
||||||
BUILT_FILES=
|
|
||||||
|
|
||||||
# data files, .c files, scripts anything needed to either compile the test and/or run it.
|
|
||||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE file1 file2
|
|
||||||
|
|
||||||
run: $(FILES) build
|
|
||||||
./runtest.sh
|
|
||||||
|
|
||||||
build: $(BUILT_FILES)
|
|
||||||
chmod a+x ./runtest.sh
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f *~ *.rpm $(BUILT_FILES)
|
|
||||||
|
|
||||||
# You may need to add other targets e.g. to build executables from source code
|
|
||||||
# Add them here:
|
|
||||||
|
|
||||||
|
|
||||||
# Include Common Makefile
|
|
||||||
include /usr/share/rhts/lib/rhts-make.include
|
|
||||||
|
|
||||||
# Generate the testinfo.desc here:
|
|
||||||
$(METADATA): Makefile
|
|
||||||
@touch $(METADATA)
|
|
||||||
# Change to the test owner's name
|
|
||||||
@echo "Owner: Bill Peck <bpeck@redhat.com>" > $(METADATA)
|
|
||||||
@echo "Name: $(TEST)" >> $(METADATA)
|
|
||||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
|
||||||
@echo "License: GPL V2" >> $(METADATA)
|
|
||||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
|
||||||
@echo "Description: diff -b should ignore whitespace ">> $(METADATA)
|
|
||||||
@echo "TestTime: 5m" >> $(METADATA)
|
|
||||||
@echo "RunFor: $(PACKAGE_NAME)" >> $(METADATA)
|
|
||||||
@echo "Requires: $(PACKAGE_NAME)" >> $(METADATA)
|
|
||||||
|
|
||||||
# You may need other fields here; see the documentation
|
|
||||||
rhts-lint $(METADATA)
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
Create 2 files, f1, f2 with contents "abc" and "abc " (without quotes),
|
|
||||||
i.e. the same line with a space on the end.
|
|
||||||
|
|
||||||
Diff ignoring whitespace:
|
|
||||||
|
|
||||||
diff -b f1 f2
|
|
||||||
|
|
||||||
should produce no diff output, but does on F8. Works fine on FC6.
|
|
||||||
|
|
||||||
version: diffutils-2.8.1-17.fc8
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
abc
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
abc
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
||||||
summary: diff -b should ignore whitespace
|
|
||||||
description: "Create 2 files, f1, f2 with contents \"abc\" and \"abc \" (without quotes),\n\
|
|
||||||
i.e. the same line with a space on the end.\n\nDiff ignoring whitespace:\n\ndiff
|
|
||||||
-b f1 f2\n\nshould produce no diff output, but does on F8. Works fine on FC6.\n\
|
|
||||||
\nversion: diffutils-2.8.1-17.fc8\n"
|
|
||||||
contact: Bill Peck <bpeck@redhat.com>
|
|
||||||
component:
|
|
||||||
- diffutils
|
|
||||||
test: ./runtest.sh
|
|
||||||
framework: beakerlib
|
|
||||||
recommend:
|
|
||||||
- diffutils
|
|
||||||
duration: 5m
|
|
||||||
extra-summary: /CoreOS/diffutils/whitespace
|
|
||||||
extra-task: /CoreOS/diffutils/whitespace
|
|
||||||
|
|
@ -1,36 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# Copyright (c) 2006 Red Hat, Inc. All rights reserved. This copyrighted material
|
|
||||||
# is made available to anyone wishing to use, modify, copy, or
|
|
||||||
# redistribute it subject to the terms and conditions of the GNU General
|
|
||||||
# Public License v.2.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
||||||
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
||||||
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with this program; if not, write to the Free Software
|
|
||||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
||||||
#
|
|
||||||
# Author: Bill Peck
|
|
||||||
|
|
||||||
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
|
||||||
|
|
||||||
PACKAGE="diffutils"
|
|
||||||
|
|
||||||
rlJournalStart
|
|
||||||
rlPhaseStartSetup
|
|
||||||
rlAssertRpm $PACKAGE
|
|
||||||
rlRun "TmpDir=\`mktemp -d\`" 0 "Creating tmp directory"
|
|
||||||
rlPhaseEnd
|
|
||||||
|
|
||||||
rlPhaseStartTest
|
|
||||||
rlRun "diff -b file1 file2"
|
|
||||||
rlPhaseEnd
|
|
||||||
|
|
||||||
rlPhaseStartCleanup
|
|
||||||
rlRun "rm -fr $TmpDir" 0 "Removing tmp directory"
|
|
||||||
rlPhaseEnd
|
|
||||||
rlJournalEnd
|
|
||||||
rlJournalPrintText
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue