vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit 4abfc6521689191cc094fde52c432ef0b3fe4d5d
parent 56ad127618fa6365ed563a69ba6b0a1b308c5407
Author: Marc André Tanner <mat@brain-dump.org>
Date:   Mon, 19 Dec 2016 10:52:06 +0100

test: ignore custom visrc.lua configuration

Diffstat:
Mlua/test.sh | 3+--
Msam/test.sh | 1+
Asam/visrc.lua | 0
Mvis/test.sh | 3+--
4 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/lua/test.sh b/lua/test.sh @@ -1,5 +1,6 @@ #!/bin/sh +export VIS_PATH=. [ -z "$VIS" ] && VIS="../../vis" $VIS -v @@ -13,8 +14,6 @@ else test_files="$(find . -type f -name "*.in") basic_empty_file.in" fi -export VIS_PATH=. - for t in $test_files; do TESTS_RUN=$((TESTS_RUN + 1)) t=${t%.in} diff --git a/sam/test.sh b/sam/test.sh @@ -3,6 +3,7 @@ NL=' ' +export VIS_PATH=. [ -z "$VIS" ] && VIS="../../vis" [ -z "$SAM" ] && SAM="sam" [ -z "$PLAN9" ] && PLAN9="/usr/local/plan9/bin" diff --git a/sam/visrc.lua b/sam/visrc.lua diff --git a/vis/test.sh b/vis/test.sh @@ -1,5 +1,6 @@ #!/bin/sh +export VIS_PATH=. [ -z "$VIS" ] && VIS="../../vis" $VIS -v @@ -13,8 +14,6 @@ else test_files="$(find . -type f -name '*.in')" fi -export VIS_PATH=. - for t in $test_files; do TESTS_RUN=$((TESTS_RUN + 1)) t=${t%.in}