16 lines
411 B
Plaintext
16 lines
411 B
Plaintext
$NetBSD: patch-tests_create00.at,v 1.1 2014/05/23 20:49:37 wiz Exp $
|
|
|
|
Fix unportable sort syntax.
|
|
|
|
--- tests/create00.at.orig 2012-03-21 17:14:03.000000000 +0000
|
|
+++ tests/create00.at
|
|
@@ -21,7 +21,7 @@ AT_CHECK([
|
|
AT_SORT_PREREQ
|
|
num2word 1:1000 > input
|
|
gtload test.db < input
|
|
-gtdump test.db | sort -k1,2 -n > output
|
|
+gtdump test.db | sort -n -k1,2 > output
|
|
cmp -s input output || diff -u input output
|
|
])
|
|
|