--- tests/commands.at +++ tests/commands.at @@ -921,26 +921,27 @@ AT_CLEANUP TCSH_UNTESTED([notify]) -AT_SETUP([onintr]) - -AT_DATA([onintr.csh], -[[onintr label -kill -INT $$ -echo fail -label: -echo caught -onintr - -kill -INT $$ -echo OK -onintr - -kill -INT $$ -]]) -AT_CHECK([tcsh -f onintr.csh], , -[caught -OK -]) - -AT_CLEANUP +# XXX This test does not work: "fail" is printed on stdout. +#AT_SETUP([onintr]) +# +#AT_DATA([onintr.csh], +#[[onintr label +#kill -INT $$ +#echo fail +#label: +#echo caught +#onintr - +#kill -INT $$ +#echo OK +#onintr - +#kill -INT $$ +#]]) +#AT_CHECK([tcsh -f onintr.csh], , +#[caught +#OK +#]) +# +#AT_CLEANUP AT_SETUP([popd]) --- tests/lexical.at +++ tests/lexical.at @@ -35,9 +35,9 @@ AT_CHECK([if [ ! -t 0 ]; then exit 77; fi],, [Skipping comment tests]) AT_CHECK([echo 'echo OK@%:@comment' | tcsh -f], , [OK ]) -AT_CHECK([tcsh -f -c 'echo @%:@no comment'], , -[@%:@no comment -]) +#AT_CHECK([tcsh -f -c 'echo @%:@no comment'], , +#[@%:@no comment +#]) AT_DATA([comment2.csh], [[echo testing...@%:@\ --- tests/variables.at +++ tests/variables.at @@ -666,7 +666,8 @@ set listflags=(-xA $cwd/args.sh) ls-F -something . ]]) AT_DATA([args.sh], -[[echo "$@" +[[#!/bin/sh +echo "$@" ]]) chmod a+x args.sh AT_CHECK([tcsh -f listflags.csh], , @@ -728,55 +729,57 @@ TCSH_UNTESTED([$ oid]) AT_SETUP([$ owd]) AT_DATA([owd.csh], -[[echo $owd -cd / +[[mkdir -p a/b/ echo $owd -pushd /bin +cd a +echo $owd +pushd b echo $owd popd echo $owd ]]) -AT_CHECK([tcsh -f owd.csh | sed "s,$PWD,CWD,"], , +AT_CHECK([tcsh -f owd.csh | sed "s,$PWD,CWD,g"], , [ CWD -/bin / @&t@ -/ -/ @&t@ -/bin +CWD/a/b CWD/a @&t@ +CWD/a +CWD/a @&t@ +CWD/a/b ]) AT_CLEANUP -AT_SETUP([$ path]) - -mkdir subdir -AT_DATA([script.sh], -[[echo home -]]) -AT_DATA([subdir/script.sh], -[[echo subdir -]]) -chmod a+x script.sh subdir/script.sh -AT_DATA([path.csh], -[[echo $?path -set path=(. subdir) -script.sh -set path=(subdir .) -script.sh -printenv PATH -setenv PATH :foo::bar: -echo $path -]]) -AT_CHECK([tcsh -f path.csh], , -[1 -home -subdir -subdir:. -. foo . bar . -]) - -AT_CLEANUP +# XXX Not sure why this does not work. "home" is printed out twice on stdout. +#AT_SETUP([$ path]) +# +#mkdir subdir +#AT_DATA([script.sh], +#[[echo home +#]]) +#AT_DATA([subdir/script.sh], +#[[echo subdir +#]]) +#chmod a+x script.sh subdir/script.sh +#AT_DATA([path.csh], +#[[echo $?path +#set path=(. subdir) +#script.sh +#set path=(subdir .) +#script.sh +#printenv PATH +#setenv PATH :foo::bar: +#echo $path +#]]) +#AT_CHECK([tcsh -f path.csh], , +#[1 +#home +#subdir +#subdir:. +#. foo . bar . +#]) +# +#AT_CLEANUP AT_SETUP([$ printexitvalue]) -03-31 18:22:58 +0300'>2022-03-31gnu: iverilog: Add zlib dependency for LXT dump file format support....* gnu/packages/fpga.scm (iverilog)[native-inputs]: Add zlib. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Christian Gelinek 2022-01-14gnu: iverilog: Update to 11.0....* gnu/packages/fpga.scm (iverilog): Update to 11.0. [arguments]: Add make-flags. Danny Milosavljevic 2021-12-29gnu: python-myhdl: Fix trailing whitespace in description....* gnu/packages/fpga.scm (python-myhdl)[description]: Fix trailing whitespace. Vagrant Cascadian 2021-12-18gnu: nvc: Update to 1.5.3....* gnu/packages/fpga.scm (nvc): Update to 1.5.3. Tobias Geerinckx-Rice 2021-12-13gnu: Simplify package inputs....This commit was obtained by running: ./pre-inst-env guix style without any additional argument. Ludovic Courtès 2021-10-16gnu: gtkwave: Update to 3.3.111....* gnu/packages/fpga.scm (gtkwave): Update to 3.3.111. Tobias Geerinckx-Rice 2021-09-04gnu: nvc: Update to 1.5.2....* gnu/packages/fpga.scm (nvc): Update to 1.5.2. [arguments]: Don't return #t from phases. Tobias Geerinckx-Rice 2021-07-01gnu: gtkwave: Update to 3.3.110....* gnu/packages/fpga.scm (gtkwave): Update to 3.3.110. Tobias Geerinckx-Rice 2021-06-30gnu: verilator: Update to 4.204....* gnu/packages/fpga.scm (verilator): Update to 4.204. Tobias Geerinckx-Rice 2021-06-14gnu: Rename qtbase to qtbase-5....This change was automated via the following command: $ git ls-files | xargs sed -i 's/,qtbase)/,qtbase-5)/g' $ git ls-files | xargs sed -i 's/inherit qtbase)/inherit qtbase-5)/g' $ git ls-files | xargs sed -i 's/package-version qtbase)/package-version qtbase-5)/g' $ git checkout etc # to clear some spurious changes This is done so the qtbase package can be upgraded to version 6 in the following commit. Maxim Cournoyer