zsh-workers
 help / color / mirror / code / Atom feed
* Y02 test failure
@ 2021-11-12 19:23 Marlon Richert
  2021-11-12 19:56 ` Bart Schaefer
  0 siblings, 1 reply; 11+ messages in thread
From: Marlon Richert @ 2021-11-12 19:23 UTC (permalink / raw)
  To: Zsh hackers list

On macOS:

% make TESTNUM=Y01 check
if test -n "gcc"; then \
  cd .. && DESTDIR= \
  /Applications/Xcode.app/Contents/Developer/usr/bin/make
MODDIR=`pwd`/Test/Modules install.modules > /dev/null; \
fi
if test -z "$ZTST_handler"; then \
  ZTST_handler=runtests.zsh; \
fi; \
if ZTST_testlist="`for f in ./Y01*.ztst; \
           do echo $f; done`" \
ZTST_srcdir="." \
ZTST_exe=../Src/zsh \
../Src/zsh +Z -f ./$ZTST_handler; then \
stat=0; \
else \
stat=1; \
fi; \
sleep 1; \
rm -rf Modules .zcompdump; \
exit $stat
./Y01completion.ztst: starting.
--- /tmp/zsh.ztst.176/ztst.out 2021-11-12 21:19:31.000000000 +0200
+++ /tmp/zsh.ztst.176/ztst.tout 2021-11-12 21:19:31.000000000 +0200
@@ -1 +1 @@
-line: {ztst.zsh }{}
+line: {ztst.zsh}{}
Test ./Y01completion.ztst failed: output differs from expected as
shown above for:
  comptesteval "path=( $ZTST_srcdir:A )"
  comptest $'zt\t'
Was testing: command
./Y01completion.ztst: test failed.
**************************************
0 successful test scripts, 1 failure, 0 skipped
**************************************
make: *** [check] Error 1


^ permalink raw reply	[flat|nested] 11+ messages in thread
* Y02 Test Failure
@ 2021-10-27  1:50 Vin Shelton
  2021-10-27  2:36 ` Bart Schaefer
  0 siblings, 1 reply; 11+ messages in thread
From: Vin Shelton @ 2021-10-27  1:50 UTC (permalink / raw)
  To: Zsh Hackers' List

[-- Attachment #1: Type: text/plain, Size: 3507 bytes --]

On my Arch linux x86_64 system, I'm seeing a Y02 test failure.

TESTNUM=Y02 ZTST_verbose=1 make check
cd Test ; make check
make[1]: Entering directory '/opt/build/zsh-2021-10-26/Test'
if test -n "gcc"; then \
  cd .. && DESTDIR= \
  make MODDIR=`pwd`/Test/Modules install.modules > /dev/null; \
fi
if test -z "$ZTST_handler"; then \
  ZTST_handler=runtests.zsh; \
fi; \
if ZTST_testlist="`for f in ../../../src/zsh-2021-10-26/Test/Y02*.ztst; \
           do echo $f; done`" \
 ZTST_srcdir="../../../src/zsh-2021-10-26/Test" \
 ZTST_exe=../Src/zsh \
 ../Src/zsh +Z -f ../../../src/zsh-2021-10-26/Test/$ZTST_handler; then \
 stat=0; \
else \
 stat=1; \
fi; \
sleep 1; \
rm -rf Modules .zcompdump; \
exit $stat
../../../src/zsh-2021-10-26/Test/Y02compmatch.ztst: starting.
Running test: Match Error for "z:"
Test successful.
Running test: Match Error for "m:"
Test successful.
Running test: Match Error for "M:"
Test successful.
Running test: Match Error "r:"
Test successful.
Running test: Match Error "R:"
Test successful.
Running test: Match Error for "l:"
Test successful.
Running test: Match Error for "L:"
Test successful.
Running test: Match Error for "m:{0-9"
Test successful.
Running test: Match Error for "m:{0-9}"
Test successful.
Running test: Match Error for "m:{0-9}={"
Test successful.
Running test: Match Error for "m:{0-9}={0-"
Test successful.
Running test: Match Error for "m:{0-9}={-"
Test successful.
Running test: Match Error "r:"
Test successful.
Running test: Documentation example for options, input "nolistbee"
Test successful.
Running test: Documentation example for options, input "list_bee"
Test successful.
Running test: Documentation example for options, input "ListBee"
Test successful.
Running test: Documentation example for options, input "NOList"
Test successful.
Running test: Documentation example for options, input "NO_List\t__\tB\t"
Test successful.
Running test: Documentation example for options, input
"__\tN\t__o\t___\tlist_\tbeep__\t"
Test successful.
Running test: Documentation example for options, input
"__\tNo\t___\tlist_\tbeep__\t"
Test successful.
Running test: Documentation example for options, input
"___\tlist_\tbeep__\t"
Test successful.
Running test: Documentation example for options, input "__no_listbe"
Test successful.
Running test: Documentation example for options, input "nonono_listbe"
Test successful.
Running test: Documentation example for lowercase insenitive M, input
"ab\tC\t"
Test successful.
Running test: Documentation example for lowercase insenitive m, input
"A\t\t"
Test successful.
Running test: Documentation example for case insenitive M, input "aB\t\t"
Test successful.
Running test: Documentation example for case insenitive m, input "aB\t\t"
Test successful.
Running test: r:|.=* should complete .s.u
Test successful.
Running test: r:[^.]||.=* should not complete .s.u, but should complete
c.s.u
Test failed, as expected.
Running test: r:|.=* should complete .g.
Test ../../../src/zsh-2021-10-26/Test/Y02compmatch.ztst was expected to
fail, but passed.
Was testing: r:|.=* should complete .g.
../../../src/zsh-2021-10-26/Test/Y02compmatch.ztst: test XPassed.
**************************************
0 successful test scripts, 1 failure, 0 skipped
**************************************
make[1]: *** [Makefile:190: check] Error 1
make[1]: Leaving directory '/opt/build/zsh-2021-10-26/Test'
make: *** [Makefile:263: check] Error 2

Please let me know if you need any more info.

  - Vin

-- 

*Never for money, always for love*

[-- Attachment #2: Type: text/html, Size: 5069 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2021-12-01  3:42 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-12 19:23 Y02 test failure Marlon Richert
2021-11-12 19:56 ` Bart Schaefer
2021-11-12 21:28   ` Marlon Richert
2021-11-12 21:49     ` Bart Schaefer
2021-11-12 22:00       ` Lawrence Velázquez
2021-11-13 17:15         ` Marlon Richert
2021-11-29 21:43           ` Y01 " Marlon Richert
2021-11-30 14:57             ` Jun. T
2021-12-01  3:39               ` Bart Schaefer
  -- strict thread matches above, loose matches on Subject: below --
2021-10-27  1:50 Y02 Test Failure Vin Shelton
2021-10-27  2:36 ` Bart Schaefer

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).