From 715b1f4a5f9f798c7fc1f410f37c3d6738784c9f Mon Sep 17 00:00:00 2001 From: Pagran <67878280+pagran@users.noreply.github.com> Date: Fri, 14 Aug 2020 21:23:30 +0300 Subject: [PATCH] Fix -short for tiny.txt --- testdata/scripts/tiny.txt | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/testdata/scripts/tiny.txt b/testdata/scripts/tiny.txt index 35f972c..001d2b7 100644 --- a/testdata/scripts/tiny.txt +++ b/testdata/scripts/tiny.txt @@ -1,36 +1,35 @@ -garble -debugdir=.obf-src build - env TINY_PATTERN='^\/\/line :1$' env DEFAULT_PATTERN='^\/\/line \w\.go:[1-9][0-9]*$' env DEFAULT_STACK_PATTERN='^\t\w\.go:[1-9][0-9]*(\s\+0x[0-9a-f]+)?' env TINY_STACK_PATTERN='^\t\?\?:[0-9][0-9]*(\s\+0x[0-9a-f]+)?$' -# Default mode +# Tiny mode +garble -tiny -debugdir=.obf-src build -# Check for file name leak protection grep $TINY_PATTERN .obf-src/main/main.go - -# Check for default line obfuscation -grep $DEFAULT_PATTERN .obf-src/main/main.go +! grep $DEFAULT_PATTERN .obf-src/main/main.go ! exec ./main$exe ! stderr 'main\.go' -! stderr $TINY_STACK_PATTERN -stderr $DEFAULT_STACK_PATTERN +! stderr $DEFAULT_STACK_PATTERN +stderr $TINY_STACK_PATTERN [short] stop # no need to verify this with -short -# Tiny mode +# Default mode -garble -tiny -debugdir=.obf-src build +garble -debugdir=.obf-src build +# Check for file name leak protection grep $TINY_PATTERN .obf-src/main/main.go -! grep $DEFAULT_PATTERN .obf-src/main/main.go + +# Check for default line obfuscation +grep $DEFAULT_PATTERN .obf-src/main/main.go ! exec ./main$exe ! stderr 'main\.go' -! stderr $DEFAULT_STACK_PATTERN -stderr $TINY_STACK_PATTERN +! stderr $TINY_STACK_PATTERN +stderr $DEFAULT_STACK_PATTERN -- go.mod -- module main