From 65b4692dbca6cdd940ef9f2124b9c41bb994ff6b Mon Sep 17 00:00:00 2001 From: Andrew LeFevre Date: Tue, 20 Apr 2021 09:16:02 -0400 Subject: [PATCH] hopefully fix position test on Windows by not matching on 'main.go' --- testdata/scripts/position.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/testdata/scripts/position.txt b/testdata/scripts/position.txt index 7e2a5a3..9cdc90d 100644 --- a/testdata/scripts/position.txt +++ b/testdata/scripts/position.txt @@ -2,15 +2,15 @@ env GOPRIVATE=test/main garble build exec ./main -! stdout 'main\.go|other_file_name|is sorted' +! stdout 'someverylongmain\.go|other_file_name|is sorted' -! binsubstr main$exe 'main.go' 'other_file_name' +! binsubstr main$exe 'someverylongmain.go' 'other_file_name' [short] stop # no need to verify this with -short go build exec ./main -stdout 'main.go' +stdout 'someverylongmain.go' stdout 'other_file_name' stdout ':19: main' stdout 'initPositions is sorted' @@ -20,7 +20,7 @@ stdout 'varPositions is sorted' module test/main go 1.16 --- main.go -- +-- someverylongmain.go -- package main import (