From 6cc6d5b0651f1eba689a9c6e6d53d4502334208b Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Mon, 10 Jan 2022 17:07:49 -0600 Subject: [PATCH] Fix distro version skew in TEST_HOST. --- tests/fmt.test | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/fmt.test b/tests/fmt.test index 201952ef..7be2e4e7 100755 --- a/tests/fmt.test +++ b/tests/fmt.test @@ -26,7 +26,8 @@ testing "" "fmt -w 11" "1 2 3 4 5\n6 7 8 9 0\n" "" "1 2 3 4 5 6 7 8 9 0\n" testing "" "fmt -w 12" "1 2 3 4 5 6\n7 8 9 0\n" "" "1 2 3 4 5 6 7 8 9 0\n" testing "matched tab indent" "fmt" "\thello world\n" "" "\thello\n\tworld" -testing "matched tab/space" "fmt" ' hello world\n' "" \ +# Version skew: debian is now emitting \t instead of "first line's indent" +toyonly testing "matched tab/space" "fmt" ' hello world\n' "" \ " hello\n\tworld" testing "matched space/tab" "fmt" "\thello world\n" "" "\thello\n world" -- 2.39.2