diff --git a/tester/Minishell.csv b/tester/Minishell.csv index f114053..c3b822e 100644 --- a/tester/Minishell.csv +++ b/tester/Minishell.csv @@ -799,8 +799,6 @@ $>","0 0", ,"$> unset PATH $> ls",,,,OK,OK,bash: ls: No such file or directory,127, -,"$> unset """"",,,,OK,OK,"bash: unset: `': not a valid identifier -$>",1, ,$> unset INEXISTANT,,,,OK,OK,$>,0,Cas où la variable n'existe pas ,"$> unset PWD $> env | grep PWD @@ -827,46 +825,14 @@ $> $> env | grep OLDPWD",,,,OK,OK,"$> $>","0 0", -,$> unset 9HOLA,,,,OK,OK,"bash: unset: `9HOLA': not a valid identifier -$>",1, ,$> unset HOLA9,,,,OK,OK,$>,0, -,$> unset HOL?A,,,,OK,OK,"bash: unset: `HOL?A': not a valid identifier -$>",1, -,$> unset HOLA HOL?A,,,,OK,OK,"bash: unset: `HOL?A': not a valid identifier -$>",1,Il unset bien HOLA -,$> unset HOL?A HOLA,,,,OK,OK,"bash: unset: `HOL?A': not a valid identifier -$>",1,Il unset bien HOLA -,$> unset HOL?A HOL.A,,,,OK,OK,"bash: unset: `HOL?A': not a valid identifier -bash: unset: `HOL.A': not a valid identifier -$>",1, -,$> unset HOLA=,,,,OK,OK,"bash: unset: `HOLA=': not a valid identifier -$>",1, -,$> unset HOL\\\\A,NON GERE,,,OK,OK,bash: unset: `HOL\\A': not a valid identifier,1, ,$> unset HOL;A,NON GERE,,,OK,OK,bash: A: command not found,127, -,$> unset HOL.A,,,,OK,OK,bash: unset: `HOL.A': not a valid identifier,1, -,$> unset HOL+A,,,,OK,OK,bash: unset: `HOL+A': not a valid identifier,1, -,$> unset HOL=A,,,,OK,OK,bash: unset: `HOL=A': not a valid identifier,1, -,$> unset HOL{A,,,,OK,OK,bash: unset: `HOL{A': not a valid identifier,1, -,$> unset HOL}A,,,,OK,OK,bash: unset: `HOL}A': not a valid identifier,1, -,$> unset HOL-A,,,,OK,OK,bash: unset: `HOL-A': not a valid identifier,1, ,$> unset -HOLA,,,,OK,OK,bash: unset: -H: invalid option,2, ,$> unset _HOLA,,,,OK,OK,$>,0, ,$> unset HOL_A,,,,OK,OK,$>,0, ,$> unset HOLA_,,,,OK,OK,$>,0, -,$> unset HOL*A,,,,OK,OK,bash: unset: `HOL*A': not a valid identifier,1, -,$> unset HOL#A,,,,OK,OK,bash: unset: `HOL#A': not a valid identifier,1, ,$> unset $HOLA,,,,OK,OK,$>,0,"Il va unset le contenu de $HOLA, c'est-a-dire la variable bonjour" -,$> unset $PWD,,,,OK,OK,bash: unset: `/home/vietdu91/42_works/minishell': not a valid identifier,1, -,$> unset HOL@,,,,OK,OK,bash: unset: `HOL@': not a valid identifier,1, -,$> unset HOL!A,,,,OK,OK,bash: !A: event not found,1, -,$> unset HOL^A,,,,OK,OK,bash: unset: `HOL^A': not a valid identifier,1, ,$> unset HOL$?A,,,,OK,OK,$>,0,"Unset prend en compte le contenu de $?, c'est-a-dire qu'il lit HOL0A ou HOL127A" -,$> unset HOL\~A,,,,OK,OK,bash: unset: `HOL~': not a valid identifier,1, -,"$> unset """" HOLA -$> env | grep HOLA",,,,OK,OK,"bash: unset: `': not a valid identifier -$> -$>","1 -0",HOLA sera quand meme unset !! ,"$> unset PATH $> echo $PATH",,,,OK,OK," $>","0 @@ -875,9 +841,6 @@ $>","0 $> cat Makefile",,,,OK,OK,"bash: cat: No such file or directory $>","0 1", -,$> unset =,,,,OK,OK,bash: unset: `=': not a valid identifier,0, -,$> unset ======,,,,OK,OK,bash: unset: `======': not a valid identifier,0, -,$> unset ++++++,,,,OK,OK,bash: unset: `++++++': not a valid identifier,0, ,$> unset _______,,,,OK,OK,$>,0, ,$> unset export,,,,OK,OK,$>,0, ,$> unset echo,,,,OK,OK,$>,0, diff --git a/tester/run.sh b/tester/run.sh index 7e45fbb..0969bb7 100755 --- a/tester/run.sh +++ b/tester/run.sh @@ -6,14 +6,14 @@ # By: lcottet +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2024/03/21 13:41:27 by lcottet #+# #+# # -# Updated: 2024/04/03 18:39:56 by lcottet ### ########.fr # +# Updated: 2024/04/03 19:11:34 by lcottet ### ########.fr # # # # **************************************************************************** # #!/bin/bash OUTPUT_EXIT=1 -ERROR_EXIT=1 +ERROR_EXIT=0 STATUS_EXIT=1 RED="\e[31m" diff --git a/tester/tests/246.sh b/tester/tests/246.sh index e3ddeea..7fe4b0e 100644 --- a/tester/tests/246.sh +++ b/tester/tests/246.sh @@ -1 +1 @@ -unset "" +unset INEXISTANT diff --git a/tester/tests/247.sh b/tester/tests/247.sh index 7fe4b0e..8880f5c 100644 --- a/tester/tests/247.sh +++ b/tester/tests/247.sh @@ -1 +1,3 @@ -unset INEXISTANT +unset PWD +env | grep PWD +pwd diff --git a/tester/tests/248.sh b/tester/tests/248.sh index 8880f5c..13f6a10 100644 --- a/tester/tests/248.sh +++ b/tester/tests/248.sh @@ -1,3 +1,5 @@ +pwd unset PWD env | grep PWD +cd $PWD pwd diff --git a/tester/tests/249.sh b/tester/tests/249.sh index 13f6a10..adc16e1 100644 --- a/tester/tests/249.sh +++ b/tester/tests/249.sh @@ -1,5 +1,2 @@ -pwd -unset PWD -env | grep PWD -cd $PWD -pwd +unset OLDPWD +env | grep OLDPWD diff --git a/tester/tests/250.sh b/tester/tests/250.sh index adc16e1..bd929b6 100644 --- a/tester/tests/250.sh +++ b/tester/tests/250.sh @@ -1,2 +1 @@ -unset OLDPWD -env | grep OLDPWD +unset HOLA9 diff --git a/tester/tests/251.sh b/tester/tests/251.sh index 314f2a3..b25e4f5 100644 --- a/tester/tests/251.sh +++ b/tester/tests/251.sh @@ -1 +1 @@ -unset 9HOLA +unset _HOLA diff --git a/tester/tests/252.sh b/tester/tests/252.sh index bd929b6..401eaf9 100644 --- a/tester/tests/252.sh +++ b/tester/tests/252.sh @@ -1 +1 @@ -unset HOLA9 +unset HOL_A diff --git a/tester/tests/253.sh b/tester/tests/253.sh index b10c8b1..89b4a96 100644 --- a/tester/tests/253.sh +++ b/tester/tests/253.sh @@ -1 +1 @@ -unset HOL?A +unset HOLA_ diff --git a/tester/tests/254.sh b/tester/tests/254.sh index 48359e2..dea1cdc 100644 --- a/tester/tests/254.sh +++ b/tester/tests/254.sh @@ -1 +1 @@ -unset HOLA HOL?A +unset $HOLA diff --git a/tester/tests/255.sh b/tester/tests/255.sh index bc8d92c..d75d00a 100644 --- a/tester/tests/255.sh +++ b/tester/tests/255.sh @@ -1 +1 @@ -unset HOL?A HOLA +unset HOL$?A diff --git a/tester/tests/256.sh b/tester/tests/256.sh index cebc2e4..90d87de 100644 --- a/tester/tests/256.sh +++ b/tester/tests/256.sh @@ -1 +1,2 @@ -unset HOL?A HOL.A +unset PATH +echo $PATH diff --git a/tester/tests/257.sh b/tester/tests/257.sh index b6e783a..ee61f4e 100644 --- a/tester/tests/257.sh +++ b/tester/tests/257.sh @@ -1 +1,2 @@ -unset HOLA= +unset PATH +cat Makefile diff --git a/tester/tests/258.sh b/tester/tests/258.sh index ef4c26d..acca734 100644 --- a/tester/tests/258.sh +++ b/tester/tests/258.sh @@ -1 +1 @@ -unset HOL.A +unset _______ diff --git a/tester/tests/259.sh b/tester/tests/259.sh index aada11a..3ce95bc 100644 --- a/tester/tests/259.sh +++ b/tester/tests/259.sh @@ -1 +1 @@ -unset HOL+A +unset export diff --git a/tester/tests/260.sh b/tester/tests/260.sh index efea7c2..399e771 100644 --- a/tester/tests/260.sh +++ b/tester/tests/260.sh @@ -1 +1 @@ -unset HOL=A +unset echo diff --git a/tester/tests/261.sh b/tester/tests/261.sh index 63bc1c5..84605d6 100644 --- a/tester/tests/261.sh +++ b/tester/tests/261.sh @@ -1 +1 @@ -unset HOL{A +unset pwd diff --git a/tester/tests/262.sh b/tester/tests/262.sh index 7c0aa8d..35a088d 100644 --- a/tester/tests/262.sh +++ b/tester/tests/262.sh @@ -1 +1 @@ -unset HOL}A +unset cd diff --git a/tester/tests/263.sh b/tester/tests/263.sh index 3dea4ba..7b64d59 100644 --- a/tester/tests/263.sh +++ b/tester/tests/263.sh @@ -1 +1 @@ -unset HOL-A +unset unset diff --git a/tester/tests/264.sh b/tester/tests/264.sh index b25e4f5..55b84d8 100644 --- a/tester/tests/264.sh +++ b/tester/tests/264.sh @@ -1 +1 @@ -unset _HOLA +unset sudo diff --git a/tester/tests/265.sh b/tester/tests/265.sh index 401eaf9..dcd809d 100644 --- a/tester/tests/265.sh +++ b/tester/tests/265.sh @@ -1 +1 @@ -unset HOL_A +export hola | unset hola | echo $? diff --git a/tester/tests/266.sh b/tester/tests/266.sh index 89b4a96..97fa80e 100644 --- a/tester/tests/266.sh +++ b/tester/tests/266.sh @@ -1 +1 @@ -unset HOLA_ +/bin/echo diff --git a/tester/tests/267.sh b/tester/tests/267.sh index 7c8f368..14c06b6 100644 --- a/tester/tests/267.sh +++ b/tester/tests/267.sh @@ -1 +1 @@ -unset HOL*A +/bin/echo Hola Que Tal diff --git a/tester/tests/268.sh b/tester/tests/268.sh index d28146d..0283f00 100644 --- a/tester/tests/268.sh +++ b/tester/tests/268.sh @@ -1 +1 @@ -unset HOL#A +/bin/env diff --git a/tester/tests/269.sh b/tester/tests/269.sh index dea1cdc..1da6ace 100644 --- a/tester/tests/269.sh +++ b/tester/tests/269.sh @@ -1 +1 @@ -unset $HOLA +/bin/cd Desktop diff --git a/tester/tests/270.sh b/tester/tests/270.sh index 01effff..a968713 100644 --- a/tester/tests/270.sh +++ b/tester/tests/270.sh @@ -1 +1 @@ -unset $PWD +[touche du haut] diff --git a/tester/tests/271.sh b/tester/tests/271.sh index 8faf2ca..f748bdd 100644 --- a/tester/tests/271.sh +++ b/tester/tests/271.sh @@ -1 +1 @@ -unset HOL@ +pwd diff --git a/tester/tests/272.sh b/tester/tests/272.sh index 39dee30..528f5ee 100644 --- a/tester/tests/272.sh +++ b/tester/tests/272.sh @@ -1 +1 @@ -unset HOL!A +pwd hola diff --git a/tester/tests/273.sh b/tester/tests/273.sh index 8dc47f3..b13f6bf 100644 --- a/tester/tests/273.sh +++ b/tester/tests/273.sh @@ -1 +1 @@ -unset HOL^A +pwd ./hola diff --git a/tester/tests/274.sh b/tester/tests/274.sh index d75d00a..cb7ab07 100644 --- a/tester/tests/274.sh +++ b/tester/tests/274.sh @@ -1 +1 @@ -unset HOL$?A +pwd hola que tal diff --git a/tester/tests/275.sh b/tester/tests/275.sh index 66b446f..1a99c76 100644 --- a/tester/tests/275.sh +++ b/tester/tests/275.sh @@ -1,2 +1 @@ -unset "" HOLA -env | grep HOLA +pwd pwd pwd diff --git a/tester/tests/276.sh b/tester/tests/276.sh index 90d87de..814e667 100644 --- a/tester/tests/276.sh +++ b/tester/tests/276.sh @@ -1,2 +1 @@ -unset PATH -echo $PATH +pwd ls diff --git a/tester/tests/277.sh b/tester/tests/277.sh index ee61f4e..2bf3b26 100644 --- a/tester/tests/277.sh +++ b/tester/tests/277.sh @@ -1,2 +1 @@ -unset PATH -cat Makefile +pwd ls env diff --git a/tester/tests/278.sh b/tester/tests/278.sh index f909050..9677292 100644 --- a/tester/tests/278.sh +++ b/tester/tests/278.sh @@ -1 +1 @@ -unset = +cd diff --git a/tester/tests/279.sh b/tester/tests/279.sh index be26ecc..69f32b9 100644 --- a/tester/tests/279.sh +++ b/tester/tests/279.sh @@ -1 +1 @@ -unset ====== +cd . diff --git a/tester/tests/280.sh b/tester/tests/280.sh index 47981c0..9d48bed 100644 --- a/tester/tests/280.sh +++ b/tester/tests/280.sh @@ -1 +1 @@ -unset ++++++ +cd ./ diff --git a/tester/tests/281.sh b/tester/tests/281.sh index acca734..f9cc700 100644 --- a/tester/tests/281.sh +++ b/tester/tests/281.sh @@ -1 +1 @@ -unset _______ +cd ./././. diff --git a/tester/tests/282.sh b/tester/tests/282.sh index 3ce95bc..a13bc73 100644 --- a/tester/tests/282.sh +++ b/tester/tests/282.sh @@ -1 +1 @@ -unset export +cd ././././ diff --git a/tester/tests/283.sh b/tester/tests/283.sh index 399e771..1cba595 100644 --- a/tester/tests/283.sh +++ b/tester/tests/283.sh @@ -1 +1 @@ -unset echo +cd .. diff --git a/tester/tests/284.sh b/tester/tests/284.sh index 84605d6..e9398bf 100644 --- a/tester/tests/284.sh +++ b/tester/tests/284.sh @@ -1 +1 @@ -unset pwd +cd ../ diff --git a/tester/tests/285.sh b/tester/tests/285.sh index 35a088d..8e7c918 100644 --- a/tester/tests/285.sh +++ b/tester/tests/285.sh @@ -1 +1 @@ -unset cd +cd ../.. diff --git a/tester/tests/286.sh b/tester/tests/286.sh index 7b64d59..69ef211 100644 --- a/tester/tests/286.sh +++ b/tester/tests/286.sh @@ -1 +1 @@ -unset unset +cd ../. diff --git a/tester/tests/287.sh b/tester/tests/287.sh index 55b84d8..ab691f6 100644 --- a/tester/tests/287.sh +++ b/tester/tests/287.sh @@ -1 +1 @@ -unset sudo +cd .././././. diff --git a/tester/tests/288.sh b/tester/tests/288.sh index dcd809d..48b049a 100644 --- a/tester/tests/288.sh +++ b/tester/tests/288.sh @@ -1 +1 @@ -export hola | unset hola | echo $? +cd srcs diff --git a/tester/tests/289.sh b/tester/tests/289.sh index 97fa80e..cf152c4 100644 --- a/tester/tests/289.sh +++ b/tester/tests/289.sh @@ -1 +1 @@ -/bin/echo +cd srcs objs diff --git a/tester/tests/290.sh b/tester/tests/290.sh index 14c06b6..a50566b 100644 --- a/tester/tests/290.sh +++ b/tester/tests/290.sh @@ -1 +1 @@ -/bin/echo Hola Que Tal +cd 'srcs' diff --git a/tester/tests/291.sh b/tester/tests/291.sh index 0283f00..744f84a 100644 --- a/tester/tests/291.sh +++ b/tester/tests/291.sh @@ -1 +1 @@ -/bin/env +cd "srcs" diff --git a/tester/tests/292.sh b/tester/tests/292.sh index 1da6ace..250aa00 100644 --- a/tester/tests/292.sh +++ b/tester/tests/292.sh @@ -1 +1 @@ -/bin/cd Desktop +cd '/etc' diff --git a/tester/tests/293.sh b/tester/tests/293.sh index a968713..b32bae5 100644 --- a/tester/tests/293.sh +++ b/tester/tests/293.sh @@ -1 +1 @@ -[touche du haut] +cd /e'tc' diff --git a/tester/tests/294.sh b/tester/tests/294.sh index f748bdd..f44d561 100644 --- a/tester/tests/294.sh +++ b/tester/tests/294.sh @@ -1 +1 @@ -pwd +cd /e"tc" diff --git a/tester/tests/295.sh b/tester/tests/295.sh index 528f5ee..f49d92f 100644 --- a/tester/tests/295.sh +++ b/tester/tests/295.sh @@ -1 +1 @@ -pwd hola +cd sr diff --git a/tester/tests/296.sh b/tester/tests/296.sh index b13f6bf..543d2ee 100644 --- a/tester/tests/296.sh +++ b/tester/tests/296.sh @@ -1 +1 @@ -pwd ./hola +cd Makefile diff --git a/tester/tests/297.sh b/tester/tests/297.sh index cb7ab07..13b7062 100644 --- a/tester/tests/297.sh +++ b/tester/tests/297.sh @@ -1 +1 @@ -pwd hola que tal +cd ../minishell diff --git a/tester/tests/298.sh b/tester/tests/298.sh index 1a99c76..38c4d94 100644 --- a/tester/tests/298.sh +++ b/tester/tests/298.sh @@ -1 +1 @@ -pwd pwd pwd +cd ../../../../../../.. diff --git a/tester/tests/299.sh b/tester/tests/299.sh index 814e667..88c2fa0 100644 --- a/tester/tests/299.sh +++ b/tester/tests/299.sh @@ -1 +1 @@ -pwd ls +cd .././../.././../bin/ls diff --git a/tester/tests/300.sh b/tester/tests/300.sh index 2bf3b26..5e14fb6 100644 --- a/tester/tests/300.sh +++ b/tester/tests/300.sh @@ -1 +1 @@ -pwd ls env +cd / diff --git a/tester/tests/301.sh b/tester/tests/301.sh index 9677292..3e9db43 100644 --- a/tester/tests/301.sh +++ b/tester/tests/301.sh @@ -1 +1 @@ -cd +cd '/' diff --git a/tester/tests/302.sh b/tester/tests/302.sh index 69f32b9..87e7d3a 100644 --- a/tester/tests/302.sh +++ b/tester/tests/302.sh @@ -1 +1,2 @@ -cd . +cd /// +pwd diff --git a/tester/tests/303.sh b/tester/tests/303.sh index 9d48bed..25e14fe 100644 --- a/tester/tests/303.sh +++ b/tester/tests/303.sh @@ -1 +1,2 @@ -cd ./ +cd //////// +pwd diff --git a/tester/tests/304.sh b/tester/tests/304.sh index f9cc700..3c9ec62 100644 --- a/tester/tests/304.sh +++ b/tester/tests/304.sh @@ -1 +1,2 @@ -cd ./././. +cd '////////' +pwd diff --git a/tester/tests/305.sh b/tester/tests/305.sh index a13bc73..ae0e895 100644 --- a/tester/tests/305.sh +++ b/tester/tests/305.sh @@ -1 +1 @@ -cd ././././ +cd /minishell diff --git a/tester/tests/306.sh b/tester/tests/306.sh index 1cba595..ba77714 100644 --- a/tester/tests/306.sh +++ b/tester/tests/306.sh @@ -1 +1,2 @@ +cd / cd .. diff --git a/tester/tests/307.sh b/tester/tests/307.sh index e9398bf..d81dea7 100644 --- a/tester/tests/307.sh +++ b/tester/tests/307.sh @@ -1 +1 @@ -cd ../ +cd _ diff --git a/tester/tests/308.sh b/tester/tests/308.sh index 8e7c918..62c00e8 100644 --- a/tester/tests/308.sh +++ b/tester/tests/308.sh @@ -1 +1 @@ -cd ../.. +cd - diff --git a/tester/tests/309.sh b/tester/tests/309.sh index 69ef211..9c67d78 100644 --- a/tester/tests/309.sh +++ b/tester/tests/309.sh @@ -1 +1 @@ -cd ../. +cd --- diff --git a/tester/tests/310.sh b/tester/tests/310.sh index ab691f6..7be1813 100644 --- a/tester/tests/310.sh +++ b/tester/tests/310.sh @@ -1 +1 @@ -cd .././././. +cd $HOME diff --git a/tester/tests/311.sh b/tester/tests/311.sh index 48b049a..272371c 100644 --- a/tester/tests/311.sh +++ b/tester/tests/311.sh @@ -1 +1 @@ -cd srcs +cd $HOME $HOME diff --git a/tester/tests/312.sh b/tester/tests/312.sh index cf152c4..d3e71c2 100644 --- a/tester/tests/312.sh +++ b/tester/tests/312.sh @@ -1 +1 @@ -cd srcs objs +cd $HOME/42_works diff --git a/tester/tests/313.sh b/tester/tests/313.sh index a50566b..3a3daa0 100644 --- a/tester/tests/313.sh +++ b/tester/tests/313.sh @@ -1 +1 @@ -cd 'srcs' +cd "$PWD/srcs" diff --git a/tester/tests/314.sh b/tester/tests/314.sh index 744f84a..d64afb0 100644 --- a/tester/tests/314.sh +++ b/tester/tests/314.sh @@ -1 +1 @@ -cd "srcs" +cd '$PWD/srcs' diff --git a/tester/tests/315.sh b/tester/tests/315.sh index 250aa00..8fb0581 100644 --- a/tester/tests/315.sh +++ b/tester/tests/315.sh @@ -1 +1,2 @@ -cd '/etc' +unset HOME +cd $HOME diff --git a/tester/tests/316.sh b/tester/tests/316.sh index b32bae5..e8f3f12 100644 --- a/tester/tests/316.sh +++ b/tester/tests/316.sh @@ -1 +1,3 @@ -cd /e'tc' +unset HOME +export HOME= +cd diff --git a/tester/tests/317.sh b/tester/tests/317.sh index f44d561..2cabd69 100644 --- a/tester/tests/317.sh +++ b/tester/tests/317.sh @@ -1 +1,3 @@ -cd /e"tc" +unset HOME +export HOME +cd diff --git a/tester/tests/318.sh b/tester/tests/318.sh index f49d92f..d549549 100644 --- a/tester/tests/318.sh +++ b/tester/tests/318.sh @@ -1 +1 @@ -cd sr +cd minishell Docs crashtest.c diff --git a/tester/tests/319.sh b/tester/tests/319.sh index 543d2ee..842480c 100644 --- a/tester/tests/319.sh +++ b/tester/tests/319.sh @@ -1 +1,2 @@ -cd Makefile + cd / | echo $? +pwd diff --git a/tester/tests/320.sh b/tester/tests/320.sh index 13b7062..080cabb 100644 --- a/tester/tests/320.sh +++ b/tester/tests/320.sh @@ -1 +1 @@ -cd ../minishell +cd ~ diff --git a/tester/tests/321.sh b/tester/tests/321.sh index 38c4d94..407bb69 100644 --- a/tester/tests/321.sh +++ b/tester/tests/321.sh @@ -1 +1,5 @@ -cd ../../../../../../.. +mkdir a +mkdir a/b +cd a/b +rm -r ../../a +cd .. diff --git a/tester/tests/322.sh b/tester/tests/322.sh index 88c2fa0..af1264f 100644 --- a/tester/tests/322.sh +++ b/tester/tests/322.sh @@ -1 +1,5 @@ -cd .././../.././../bin/ls +mkdir a +mkdir a/b +cd a/b +rm -r ../../a +pwd diff --git a/tester/tests/323.sh b/tester/tests/323.sh index 5e14fb6..f9642f9 100644 --- a/tester/tests/323.sh +++ b/tester/tests/323.sh @@ -1 +1,6 @@ -cd / +mkdir a +mkdir a/b +cd a/b +rm -r ../../a +echo $PWD +echo $OLDPWD diff --git a/tester/tests/324.sh b/tester/tests/324.sh index 3e9db43..ff85f6a 100644 --- a/tester/tests/324.sh +++ b/tester/tests/324.sh @@ -1 +1,7 @@ -cd '/' +mkdir a +mkdir a/b +cd a/b +rm -r ../../a +cd +echo $PWD +echo $OLDPWD diff --git a/tester/tests/325.sh b/tester/tests/325.sh index 87e7d3a..2117313 100644 --- a/tester/tests/325.sh +++ b/tester/tests/325.sh @@ -1,2 +1,5 @@ -cd /// -pwd +mkdir a +cd a +rm -r ../a +echo $PWD +echo $OLDPWD diff --git a/tester/tests/326.sh b/tester/tests/326.sh index 25e14fe..2863481 100644 --- a/tester/tests/326.sh +++ b/tester/tests/326.sh @@ -1,2 +1,2 @@ -cd //////// -pwd +chmod 000 minishell +./minishell diff --git a/tester/tests/327.sh b/tester/tests/327.sh index 3c9ec62..4698224 100644 --- a/tester/tests/327.sh +++ b/tester/tests/327.sh @@ -1,2 +1 @@ -cd '////////' -pwd +ls hola diff --git a/tester/tests/328.sh b/tester/tests/328.sh index ae0e895..0937d48 100644 --- a/tester/tests/328.sh +++ b/tester/tests/328.sh @@ -1 +1 @@ -cd /minishell +./Makefile diff --git a/tester/tests/329.sh b/tester/tests/329.sh index ba77714..1a6217a 100644 --- a/tester/tests/329.sh +++ b/tester/tests/329.sh @@ -1,2 +1 @@ -cd / -cd .. +./minishell diff --git a/tester/tests/330.sh b/tester/tests/330.sh index d81dea7..35271be 100644 --- a/tester/tests/330.sh +++ b/tester/tests/330.sh @@ -1 +1,2 @@ -cd _ +touch hola +./hola diff --git a/tester/tests/331.sh b/tester/tests/331.sh index 62c00e8..e06ca70 100644 --- a/tester/tests/331.sh +++ b/tester/tests/331.sh @@ -1 +1 @@ -cd - +env|"wc" -l diff --git a/tester/tests/332.sh b/tester/tests/332.sh index 9c67d78..5dbbcb4 100644 --- a/tester/tests/332.sh +++ b/tester/tests/332.sh @@ -1 +1 @@ -cd --- +env|"wc "-l diff --git a/tester/tests/333.sh b/tester/tests/333.sh index 7be1813..1f3944e 100644 --- a/tester/tests/333.sh +++ b/tester/tests/333.sh @@ -1 +1 @@ -cd $HOME +expr 1 + 1 diff --git a/tester/tests/334.sh b/tester/tests/334.sh index 272371c..57030b5 100644 --- a/tester/tests/334.sh +++ b/tester/tests/334.sh @@ -1 +1 @@ -cd $HOME $HOME +expr $? + $? diff --git a/tester/tests/335.sh b/tester/tests/335.sh index d3e71c2..2857bed 100644 --- a/tester/tests/335.sh +++ b/tester/tests/335.sh @@ -1 +1,2 @@ -cd $HOME/42_works +env -i ./minishell +env diff --git a/tester/tests/336.sh b/tester/tests/336.sh index 3a3daa0..70e861f 100644 --- a/tester/tests/336.sh +++ b/tester/tests/336.sh @@ -1 +1,2 @@ -cd "$PWD/srcs" +env -i ./minishell +export diff --git a/tester/tests/337.sh b/tester/tests/337.sh index d64afb0..7f795fe 100644 --- a/tester/tests/337.sh +++ b/tester/tests/337.sh @@ -1 +1,2 @@ -cd '$PWD/srcs' +env -i ./minishell +cd diff --git a/tester/tests/338.sh b/tester/tests/338.sh index 8fb0581..a3abe50 100644 --- a/tester/tests/338.sh +++ b/tester/tests/338.sh @@ -1,2 +1 @@ -unset HOME -cd $HOME +exit diff --git a/tester/tests/339.sh b/tester/tests/339.sh index e8f3f12..98c2935 100644 --- a/tester/tests/339.sh +++ b/tester/tests/339.sh @@ -1,3 +1 @@ -unset HOME -export HOME= -cd +exit exit diff --git a/tester/tests/340.sh b/tester/tests/340.sh index 2cabd69..cb10bcd 100644 --- a/tester/tests/340.sh +++ b/tester/tests/340.sh @@ -1,3 +1 @@ -unset HOME -export HOME -cd +exit hola diff --git a/tester/tests/341.sh b/tester/tests/341.sh index d549549..5089181 100644 --- a/tester/tests/341.sh +++ b/tester/tests/341.sh @@ -1 +1 @@ -cd minishell Docs crashtest.c +exit hola que tal diff --git a/tester/tests/342.sh b/tester/tests/342.sh index 842480c..bb2ff37 100644 --- a/tester/tests/342.sh +++ b/tester/tests/342.sh @@ -1,2 +1 @@ - cd / | echo $? -pwd +exit 42 diff --git a/tester/tests/343.sh b/tester/tests/343.sh index 080cabb..d36a62f 100644 --- a/tester/tests/343.sh +++ b/tester/tests/343.sh @@ -1 +1 @@ -cd ~ +exit 000042 diff --git a/tester/tests/344.sh b/tester/tests/344.sh index 407bb69..5521b43 100644 --- a/tester/tests/344.sh +++ b/tester/tests/344.sh @@ -1,5 +1 @@ -mkdir a -mkdir a/b -cd a/b -rm -r ../../a -cd .. +exit 666 diff --git a/tester/tests/345.sh b/tester/tests/345.sh index af1264f..50ee2de 100644 --- a/tester/tests/345.sh +++ b/tester/tests/345.sh @@ -1,5 +1 @@ -mkdir a -mkdir a/b -cd a/b -rm -r ../../a -pwd +exit 666 666 diff --git a/tester/tests/346.sh b/tester/tests/346.sh index f9642f9..ffbb50d 100644 --- a/tester/tests/346.sh +++ b/tester/tests/346.sh @@ -1,6 +1 @@ -mkdir a -mkdir a/b -cd a/b -rm -r ../../a -echo $PWD -echo $OLDPWD +exit -666 666 diff --git a/tester/tests/347.sh b/tester/tests/347.sh index ff85f6a..0a4fe26 100644 --- a/tester/tests/347.sh +++ b/tester/tests/347.sh @@ -1,7 +1 @@ -mkdir a -mkdir a/b -cd a/b -rm -r ../../a -cd -echo $PWD -echo $OLDPWD +exit hola 666 diff --git a/tester/tests/348.sh b/tester/tests/348.sh index 2117313..a119e9b 100644 --- a/tester/tests/348.sh +++ b/tester/tests/348.sh @@ -1,5 +1 @@ -mkdir a -cd a -rm -r ../a -echo $PWD -echo $OLDPWD +exit 666 666 666 666 diff --git a/tester/tests/349.sh b/tester/tests/349.sh index 2863481..cf8d9e7 100644 --- a/tester/tests/349.sh +++ b/tester/tests/349.sh @@ -1,2 +1 @@ -chmod 000 minishell -./minishell +exit 666 hola 666 diff --git a/tester/tests/350.sh b/tester/tests/350.sh index 4698224..325991f 100644 --- a/tester/tests/350.sh +++ b/tester/tests/350.sh @@ -1 +1 @@ -ls hola +exit hola 666 666 diff --git a/tester/tests/351.sh b/tester/tests/351.sh index 0937d48..f0cd74c 100644 --- a/tester/tests/351.sh +++ b/tester/tests/351.sh @@ -1 +1 @@ -./Makefile +exit 259 diff --git a/tester/tests/352.sh b/tester/tests/352.sh index 1a6217a..e6e1875 100644 --- a/tester/tests/352.sh +++ b/tester/tests/352.sh @@ -1 +1 @@ -./minishell +exit -4 diff --git a/tester/tests/353.sh b/tester/tests/353.sh index 35271be..db3c1ec 100644 --- a/tester/tests/353.sh +++ b/tester/tests/353.sh @@ -1,2 +1 @@ -touch hola -./hola +exit -42 diff --git a/tester/tests/354.sh b/tester/tests/354.sh index e06ca70..221bf3a 100644 --- a/tester/tests/354.sh +++ b/tester/tests/354.sh @@ -1 +1 @@ -env|"wc" -l +exit -0000042 diff --git a/tester/tests/355.sh b/tester/tests/355.sh index 5dbbcb4..419a641 100644 --- a/tester/tests/355.sh +++ b/tester/tests/355.sh @@ -1 +1 @@ -env|"wc "-l +exit -259 diff --git a/tester/tests/356.sh b/tester/tests/356.sh index 1f3944e..1ad40a9 100644 --- a/tester/tests/356.sh +++ b/tester/tests/356.sh @@ -1 +1 @@ -expr 1 + 1 +exit -666 diff --git a/tester/tests/357.sh b/tester/tests/357.sh index 57030b5..16ca0fc 100644 --- a/tester/tests/357.sh +++ b/tester/tests/357.sh @@ -1 +1 @@ -expr $? + $? +exit +666 diff --git a/tester/tests/358.sh b/tester/tests/358.sh index 2857bed..ca916d0 100644 --- a/tester/tests/358.sh +++ b/tester/tests/358.sh @@ -1,2 +1 @@ -env -i ./minishell -env +exit 0 diff --git a/tester/tests/359.sh b/tester/tests/359.sh index 70e861f..2e57b2f 100644 --- a/tester/tests/359.sh +++ b/tester/tests/359.sh @@ -1,2 +1 @@ -env -i ./minishell -export +exit +0 diff --git a/tester/tests/360.sh b/tester/tests/360.sh index 7f795fe..69ef27e 100644 --- a/tester/tests/360.sh +++ b/tester/tests/360.sh @@ -1,2 +1 @@ -env -i ./minishell -cd +exit -0 diff --git a/tester/tests/361.sh b/tester/tests/361.sh index a3abe50..905d9fa 100644 --- a/tester/tests/361.sh +++ b/tester/tests/361.sh @@ -1 +1 @@ -exit +exit +42 diff --git a/tester/tests/362.sh b/tester/tests/362.sh index 98c2935..d4daf98 100644 --- a/tester/tests/362.sh +++ b/tester/tests/362.sh @@ -1 +1 @@ -exit exit +exit -69 -96 diff --git a/tester/tests/363.sh b/tester/tests/363.sh index cb10bcd..e23e295 100644 --- a/tester/tests/363.sh +++ b/tester/tests/363.sh @@ -1 +1 @@ -exit hola +exit --666 diff --git a/tester/tests/364.sh b/tester/tests/364.sh index 5089181..5ba44c1 100644 --- a/tester/tests/364.sh +++ b/tester/tests/364.sh @@ -1 +1 @@ -exit hola que tal +exit ++++666 diff --git a/tester/tests/365.sh b/tester/tests/365.sh index bb2ff37..c7dfa9f 100644 --- a/tester/tests/365.sh +++ b/tester/tests/365.sh @@ -1 +1 @@ -exit 42 +exit ++++++0 diff --git a/tester/tests/366.sh b/tester/tests/366.sh index d36a62f..ee3ee9d 100644 --- a/tester/tests/366.sh +++ b/tester/tests/366.sh @@ -1 +1 @@ -exit 000042 +exit ------0 diff --git a/tester/tests/367.sh b/tester/tests/367.sh index 5521b43..4b16489 100644 --- a/tester/tests/367.sh +++ b/tester/tests/367.sh @@ -1 +1 @@ -exit 666 +exit "666" diff --git a/tester/tests/368.sh b/tester/tests/368.sh index 50ee2de..b621f22 100644 --- a/tester/tests/368.sh +++ b/tester/tests/368.sh @@ -1 +1 @@ -exit 666 666 +exit '666' diff --git a/tester/tests/369.sh b/tester/tests/369.sh index ffbb50d..245091d 100644 --- a/tester/tests/369.sh +++ b/tester/tests/369.sh @@ -1 +1 @@ -exit -666 666 +exit '-666' diff --git a/tester/tests/370.sh b/tester/tests/370.sh index 0a4fe26..456ba79 100644 --- a/tester/tests/370.sh +++ b/tester/tests/370.sh @@ -1 +1 @@ -exit hola 666 +exit '+666' diff --git a/tester/tests/371.sh b/tester/tests/371.sh index a119e9b..f980919 100644 --- a/tester/tests/371.sh +++ b/tester/tests/371.sh @@ -1 +1 @@ -exit 666 666 666 666 +exit '----666' diff --git a/tester/tests/372.sh b/tester/tests/372.sh index cf8d9e7..dd166ca 100644 --- a/tester/tests/372.sh +++ b/tester/tests/372.sh @@ -1 +1 @@ -exit 666 hola 666 +exit '++++666' diff --git a/tester/tests/373.sh b/tester/tests/373.sh index 325991f..73848e9 100644 --- a/tester/tests/373.sh +++ b/tester/tests/373.sh @@ -1 +1 @@ -exit hola 666 666 +exit '6'66 diff --git a/tester/tests/374.sh b/tester/tests/374.sh index f0cd74c..bdcce71 100644 --- a/tester/tests/374.sh +++ b/tester/tests/374.sh @@ -1 +1 @@ -exit 259 +exit '2'66'32' diff --git a/tester/tests/375.sh b/tester/tests/375.sh index e6e1875..02d63d9 100644 --- a/tester/tests/375.sh +++ b/tester/tests/375.sh @@ -1 +1 @@ -exit -4 +exit "'666'" diff --git a/tester/tests/376.sh b/tester/tests/376.sh index db3c1ec..88c3545 100644 --- a/tester/tests/376.sh +++ b/tester/tests/376.sh @@ -1 +1 @@ -exit -42 +exit '"666"' diff --git a/tester/tests/377.sh b/tester/tests/377.sh index 221bf3a..136e81b 100644 --- a/tester/tests/377.sh +++ b/tester/tests/377.sh @@ -1 +1 @@ -exit -0000042 +exit '666'"666"666 diff --git a/tester/tests/378.sh b/tester/tests/378.sh index 419a641..210d86f 100644 --- a/tester/tests/378.sh +++ b/tester/tests/378.sh @@ -1 +1 @@ -exit -259 +exit +'666'"666"666 diff --git a/tester/tests/379.sh b/tester/tests/379.sh index 1ad40a9..4c162ea 100644 --- a/tester/tests/379.sh +++ b/tester/tests/379.sh @@ -1 +1 @@ -exit -666 +exit -'666'"666"666 diff --git a/tester/tests/380.sh b/tester/tests/380.sh index 16ca0fc..57a6ddd 100644 --- a/tester/tests/380.sh +++ b/tester/tests/380.sh @@ -1 +1 @@ -exit +666 +exit 9223372036854775807 diff --git a/tester/tests/381.sh b/tester/tests/381.sh index ca916d0..b171bd4 100644 --- a/tester/tests/381.sh +++ b/tester/tests/381.sh @@ -1 +1 @@ -exit 0 +exit 9223372036854775808 diff --git a/tester/tests/382.sh b/tester/tests/382.sh index 2e57b2f..f0939a7 100644 --- a/tester/tests/382.sh +++ b/tester/tests/382.sh @@ -1 +1 @@ -exit +0 +exit -9223372036854775808 diff --git a/tester/tests/383.sh b/tester/tests/383.sh index 69ef27e..68612f2 100644 --- a/tester/tests/383.sh +++ b/tester/tests/383.sh @@ -1 +1 @@ -exit -0 +exit -9223372036854775809 diff --git a/tester/tests/384.sh b/tester/tests/384.sh index 905d9fa..9cdc66b 100644 --- a/tester/tests/384.sh +++ b/tester/tests/384.sh @@ -1 +1 @@ -exit +42 +cat | cat | cat | ls diff --git a/tester/tests/385.sh b/tester/tests/385.sh index d4daf98..a82a064 100644 --- a/tester/tests/385.sh +++ b/tester/tests/385.sh @@ -1 +1 @@ -exit -69 -96 +ls | exit diff --git a/tester/tests/386.sh b/tester/tests/386.sh index e23e295..52a0389 100644 --- a/tester/tests/386.sh +++ b/tester/tests/386.sh @@ -1 +1 @@ -exit --666 +ls | exit 42 diff --git a/tester/tests/387.sh b/tester/tests/387.sh index 5ba44c1..842ae18 100644 --- a/tester/tests/387.sh +++ b/tester/tests/387.sh @@ -1 +1 @@ -exit ++++666 +exit | ls diff --git a/tester/tests/388.sh b/tester/tests/388.sh index c7dfa9f..94c3920 100644 --- a/tester/tests/388.sh +++ b/tester/tests/388.sh @@ -1 +1,2 @@ -exit ++++++0 +echo hola > bonjour +exit | cat -e bonjour diff --git a/tester/tests/389.sh b/tester/tests/389.sh index ee3ee9d..e18ab9a 100644 --- a/tester/tests/389.sh +++ b/tester/tests/389.sh @@ -1 +1,2 @@ -exit ------0 +echo hola > bonjour +cat -e bonjour | exit diff --git a/tester/tests/390.sh b/tester/tests/390.sh index 4b16489..56d41a7 100644 --- a/tester/tests/390.sh +++ b/tester/tests/390.sh @@ -1 +1 @@ -exit "666" +echo | echo diff --git a/tester/tests/391.sh b/tester/tests/391.sh index b621f22..573a5a2 100644 --- a/tester/tests/391.sh +++ b/tester/tests/391.sh @@ -1 +1 @@ -exit '666' +echo hola | echo que tal diff --git a/tester/tests/392.sh b/tester/tests/392.sh index 245091d..fbcd1ec 100644 --- a/tester/tests/392.sh +++ b/tester/tests/392.sh @@ -1 +1 @@ -exit '-666' +pwd | echo hola diff --git a/tester/tests/393.sh b/tester/tests/393.sh index 456ba79..0aae379 100644 --- a/tester/tests/393.sh +++ b/tester/tests/393.sh @@ -1 +1 @@ -exit '+666' +env | echo hola diff --git a/tester/tests/394.sh b/tester/tests/394.sh index f980919..f904ff3 100644 --- a/tester/tests/394.sh +++ b/tester/tests/394.sh @@ -1 +1 @@ -exit '----666' +echo oui | cat -e diff --git a/tester/tests/395.sh b/tester/tests/395.sh index dd166ca..fd33d6e 100644 --- a/tester/tests/395.sh +++ b/tester/tests/395.sh @@ -1 +1 @@ -exit '++++666' +echo oui | echo non | echo hola | grep oui diff --git a/tester/tests/396.sh b/tester/tests/396.sh index 73848e9..64ca291 100644 --- a/tester/tests/396.sh +++ b/tester/tests/396.sh @@ -1 +1 @@ -exit '6'66 +echo oui | echo non | echo hola | grep non diff --git a/tester/tests/397.sh b/tester/tests/397.sh index bdcce71..51a1352 100644 --- a/tester/tests/397.sh +++ b/tester/tests/397.sh @@ -1 +1 @@ -exit '2'66'32' +echo oui | echo non | echo hola | grep hola diff --git a/tester/tests/398.sh b/tester/tests/398.sh index 02d63d9..0f19b0c 100644 --- a/tester/tests/398.sh +++ b/tester/tests/398.sh @@ -1 +1 @@ -exit "'666'" +echo hola | cat -e | cat -e | cat -e diff --git a/tester/tests/399.sh b/tester/tests/399.sh index 88c3545..8f90537 100644 --- a/tester/tests/399.sh +++ b/tester/tests/399.sh @@ -1 +1 @@ -exit '"666"' +cd .. | echo "hola" diff --git a/tester/tests/400.sh b/tester/tests/400.sh index 136e81b..ff217be 100644 --- a/tester/tests/400.sh +++ b/tester/tests/400.sh @@ -1 +1 @@ -exit '666'"666"666 +cd / | echo "hola" diff --git a/tester/tests/401.sh b/tester/tests/401.sh index 210d86f..a108a04 100644 --- a/tester/tests/401.sh +++ b/tester/tests/401.sh @@ -1 +1 @@ -exit +'666'"666"666 +cd .. | pwd diff --git a/tester/tests/402.sh b/tester/tests/402.sh index 4c162ea..566e286 100644 --- a/tester/tests/402.sh +++ b/tester/tests/402.sh @@ -1 +1 @@ -exit -'666'"666"666 +ifconfig | grep ":" diff --git a/tester/tests/403.sh b/tester/tests/403.sh index 57a6ddd..b698294 100644 --- a/tester/tests/403.sh +++ b/tester/tests/403.sh @@ -1 +1 @@ -exit 9223372036854775807 +ifconfig | grep hola diff --git a/tester/tests/404.sh b/tester/tests/404.sh index b171bd4..560b112 100644 --- a/tester/tests/404.sh +++ b/tester/tests/404.sh @@ -1 +1 @@ -exit 9223372036854775808 +whoami | grep $USER diff --git a/tester/tests/405.sh b/tester/tests/405.sh index f0939a7..d312722 100644 --- a/tester/tests/405.sh +++ b/tester/tests/405.sh @@ -1 +1,2 @@ -exit -9223372036854775808 +whoami | grep $USER > /tmp/bonjour +cat /tmp/bonjour diff --git a/tester/tests/406.sh b/tester/tests/406.sh index 68612f2..4f57170 100644 --- a/tester/tests/406.sh +++ b/tester/tests/406.sh @@ -1 +1,2 @@ -exit -9223372036854775809 +whoami | cat -e | cat -e > /tmp/bonjour +cat /tmp/bonjour diff --git a/tester/tests/407.sh b/tester/tests/407.sh index 9cdc66b..90d8ad5 100644 --- a/tester/tests/407.sh +++ b/tester/tests/407.sh @@ -1 +1,2 @@ -cat | cat | cat | ls +whereis ls | cat -e | cat -e > /tmp/bonjour +cat /tmp/bonjour diff --git a/tester/tests/408.sh b/tester/tests/408.sh index a82a064..d8a04ba 100644 --- a/tester/tests/408.sh +++ b/tester/tests/408.sh @@ -1 +1 @@ -ls | exit +ls | hola diff --git a/tester/tests/409.sh b/tester/tests/409.sh index 52a0389..768c365 100644 --- a/tester/tests/409.sh +++ b/tester/tests/409.sh @@ -1 +1 @@ -ls | exit 42 +ls | ls hola diff --git a/tester/tests/410.sh b/tester/tests/410.sh index 842ae18..af02563 100644 --- a/tester/tests/410.sh +++ b/tester/tests/410.sh @@ -1 +1 @@ -exit | ls +ls | ls | hola diff --git a/tester/tests/411.sh b/tester/tests/411.sh index 94c3920..c175f13 100644 --- a/tester/tests/411.sh +++ b/tester/tests/411.sh @@ -1,2 +1 @@ -echo hola > bonjour -exit | cat -e bonjour +ls | hola | ls diff --git a/tester/tests/412.sh b/tester/tests/412.sh index e18ab9a..76a4071 100644 --- a/tester/tests/412.sh +++ b/tester/tests/412.sh @@ -1,2 +1 @@ -echo hola > bonjour -cat -e bonjour | exit +ls | ls | hola | rev diff --git a/tester/tests/413.sh b/tester/tests/413.sh index 56d41a7..c54fc14 100644 --- a/tester/tests/413.sh +++ b/tester/tests/413.sh @@ -1 +1 @@ -echo | echo +ls | ls | echo hola | rev diff --git a/tester/tests/414.sh b/tester/tests/414.sh index 573a5a2..966147c 100644 --- a/tester/tests/414.sh +++ b/tester/tests/414.sh @@ -1 +1 @@ -echo hola | echo que tal +ls -la | grep "." diff --git a/tester/tests/415.sh b/tester/tests/415.sh index fbcd1ec..8000905 100644 --- a/tester/tests/415.sh +++ b/tester/tests/415.sh @@ -1 +1 @@ -pwd | echo hola +ls -la | grep "'.'" diff --git a/tester/tests/416.sh b/tester/tests/416.sh index 0aae379..36f7e54 100644 --- a/tester/tests/416.sh +++ b/tester/tests/416.sh @@ -1 +1 @@ -env | echo hola +echo test.c | cat -e| cat -e| cat -e| cat -e| cat -e| cat -e| cat -e| cat -e|cat -e|cat -e|cat -e diff --git a/tester/tests/417.sh b/tester/tests/417.sh index f904ff3..2569ba5 100644 --- a/tester/tests/417.sh +++ b/tester/tests/417.sh @@ -1 +1,2 @@ -echo oui | cat -e +ls|ls|ls|ls|ls|ls|ls|ls|ls|ls|ls|ls +|ls|ls|ls|ls|ls|ls|ls|ls|ls|ls|ls|ls|ls|ls|ls diff --git a/tester/tests/418.sh b/tester/tests/418.sh index fd33d6e..e1f72c0 100644 --- a/tester/tests/418.sh +++ b/tester/tests/418.sh @@ -1 +1 @@ -echo oui | echo non | echo hola | grep oui +echo hola | cat | cat | cat | cat | cat | grep hola diff --git a/tester/tests/419.sh b/tester/tests/419.sh index 64ca291..aed986a 100644 --- a/tester/tests/419.sh +++ b/tester/tests/419.sh @@ -1 +1 @@ -echo oui | echo non | echo hola | grep non +echo hola | cat diff --git a/tester/tests/420.sh b/tester/tests/420.sh index 51a1352..05ef6af 100644 --- a/tester/tests/420.sh +++ b/tester/tests/420.sh @@ -1 +1 @@ -echo oui | echo non | echo hola | grep hola +echo hola| cat diff --git a/tester/tests/421.sh b/tester/tests/421.sh index 0f19b0c..15ca5ce 100644 --- a/tester/tests/421.sh +++ b/tester/tests/421.sh @@ -1 +1 @@ -echo hola | cat -e | cat -e | cat -e +echo hola |cat diff --git a/tester/tests/422.sh b/tester/tests/422.sh index 8f90537..3d5000f 100644 --- a/tester/tests/422.sh +++ b/tester/tests/422.sh @@ -1 +1 @@ -cd .. | echo "hola" +echo hola|cat diff --git a/tester/tests/423.sh b/tester/tests/423.sh index ff217be..1e8c0ad 100644 --- a/tester/tests/423.sh +++ b/tester/tests/423.sh @@ -1 +1 @@ -cd / | echo "hola" +echo hola ||| cat diff --git a/tester/tests/424.sh b/tester/tests/424.sh index a108a04..b8e2366 100644 --- a/tester/tests/424.sh +++ b/tester/tests/424.sh @@ -1 +1 @@ -cd .. | pwd +ech|o hola | cat diff --git a/tester/tests/425.sh b/tester/tests/425.sh index 566e286..019c53b 100644 --- a/tester/tests/425.sh +++ b/tester/tests/425.sh @@ -1 +1 @@ -ifconfig | grep ":" +cat Makefile | cat -e | cat -e diff --git a/tester/tests/426.sh b/tester/tests/426.sh index b698294..3e659b3 100644 --- a/tester/tests/426.sh +++ b/tester/tests/426.sh @@ -1 +1 @@ -ifconfig | grep hola +cat Makefile | grep srcs | cat -e diff --git a/tester/tests/427.sh b/tester/tests/427.sh index 560b112..728efb3 100644 --- a/tester/tests/427.sh +++ b/tester/tests/427.sh @@ -1 +1 @@ -whoami | grep $USER +cat Makefile | grep srcs | grep srcs | cat -e diff --git a/tester/tests/428.sh b/tester/tests/428.sh index d312722..334ca13 100644 --- a/tester/tests/428.sh +++ b/tester/tests/428.sh @@ -1,2 +1 @@ -whoami | grep $USER > /tmp/bonjour -cat /tmp/bonjour +cat Makefile | grep pr | head -n 5 | cd file_not_exist diff --git a/tester/tests/429.sh b/tester/tests/429.sh index 4f57170..48ca0aa 100644 --- a/tester/tests/429.sh +++ b/tester/tests/429.sh @@ -1,2 +1 @@ -whoami | cat -e | cat -e > /tmp/bonjour -cat /tmp/bonjour +cat Makefile | grep pr | head -n 5 | hello diff --git a/tester/tests/430.sh b/tester/tests/430.sh index 90d8ad5..921f0dd 100644 --- a/tester/tests/430.sh +++ b/tester/tests/430.sh @@ -1,2 +1 @@ -whereis ls | cat -e | cat -e > /tmp/bonjour -cat /tmp/bonjour +export HOLA=bonjour | cat -e | cat -e diff --git a/tester/tests/431.sh b/tester/tests/431.sh index d8a04ba..9c3e933 100644 --- a/tester/tests/431.sh +++ b/tester/tests/431.sh @@ -1 +1 @@ -ls | hola +unset HOLA | cat -e diff --git a/tester/tests/432.sh b/tester/tests/432.sh index 768c365..862e97b 100644 --- a/tester/tests/432.sh +++ b/tester/tests/432.sh @@ -1 +1,2 @@ -ls | ls hola +export HOLA | echo hola +env | grep PROUT diff --git a/tester/tests/433.sh b/tester/tests/433.sh index af02563..1ee088a 100644 --- a/tester/tests/433.sh +++ b/tester/tests/433.sh @@ -1 +1 @@ -ls | ls | hola +export | echo hola diff --git a/tester/tests/434.sh b/tester/tests/434.sh index c175f13..9c28ae7 100644 --- a/tester/tests/434.sh +++ b/tester/tests/434.sh @@ -1 +1 @@ -ls | hola | ls +sleep 3 | sleep 3 diff --git a/tester/tests/435.sh b/tester/tests/435.sh index 76a4071..25bf1d9 100644 --- a/tester/tests/435.sh +++ b/tester/tests/435.sh @@ -1 +1 @@ -ls | ls | hola | rev +sleep 3 | exit diff --git a/tester/tests/436.sh b/tester/tests/436.sh index c54fc14..71e8e5c 100644 --- a/tester/tests/436.sh +++ b/tester/tests/436.sh @@ -1 +1 @@ -ls | ls | echo hola | rev +exit | sleep 3 diff --git a/tester/tests/437.sh b/tester/tests/437.sh index 966147c..847b20f 100644 --- a/tester/tests/437.sh +++ b/tester/tests/437.sh @@ -1 +1,3 @@ -ls -la | grep "." +echo hola > a +>>b echo que tal +cat a | c | cat diff --git a/tester/tests/438.sh b/tester/tests/438.sh index 8000905..4d5d95c 100644 --- a/tester/tests/438.sh +++ b/tester/tests/438.sh @@ -1 +1,2 @@ -ls -la | grep "'.'" +echo hola > bonjour +cat bonjour diff --git a/tester/tests/439.sh b/tester/tests/439.sh index 36f7e54..aac3741 100644 --- a/tester/tests/439.sh +++ b/tester/tests/439.sh @@ -1 +1,2 @@ -echo test.c | cat -e| cat -e| cat -e| cat -e| cat -e| cat -e| cat -e| cat -e|cat -e|cat -e|cat -e +echo que tal >> bonjour +cat bonjour diff --git a/tester/tests/440.sh b/tester/tests/440.sh index 2569ba5..b5486bd 100644 --- a/tester/tests/440.sh +++ b/tester/tests/440.sh @@ -1,2 +1,3 @@ -ls|ls|ls|ls|ls|ls|ls|ls|ls|ls|ls|ls -|ls|ls|ls|ls|ls|ls|ls|ls|ls|ls|ls|ls|ls|ls|ls +echo hola > bonjour +echo que tal >> bonjour +cat < bonjour diff --git a/tester/tests/441.sh b/tester/tests/441.sh index e1f72c0..497d844 100644 --- a/tester/tests/441.sh +++ b/tester/tests/441.sh @@ -1 +1,4 @@ -echo hola | cat | cat | cat | cat | cat | grep hola +echo hola > bonjour +rm bonjour +echo que tal >> bonjour +cat < bonjour diff --git a/tester/tests/442.sh b/tester/tests/442.sh index aed986a..f196992 100644 --- a/tester/tests/442.sh +++ b/tester/tests/442.sh @@ -1 +1,2 @@ -echo hola | cat +echo hola que tal > bonjour +cat bonjour diff --git a/tester/tests/443.sh b/tester/tests/443.sh index 05ef6af..c85bd03 100644 --- a/tester/tests/443.sh +++ b/tester/tests/443.sh @@ -1 +1,2 @@ -echo hola| cat +echo hola que tal > /tmp/bonjour +cat -e /tmp/bonjour diff --git a/tester/tests/444.sh b/tester/tests/444.sh index 15ca5ce..f8d7345 100644 --- a/tester/tests/444.sh +++ b/tester/tests/444.sh @@ -1 +1,3 @@ -echo hola |cat +export HOLA=hey +echo bonjour > $HOLA +echo $HOLA diff --git a/tester/tests/445.sh b/tester/tests/445.sh index 3d5000f..2fb364d 100644 --- a/tester/tests/445.sh +++ b/tester/tests/445.sh @@ -1 +1,2 @@ -echo hola|cat +whereis grep > Docs/bonjour +cat Docs/bonjour diff --git a/tester/tests/446.sh b/tester/tests/446.sh index 1e8c0ad..21ee061 100644 --- a/tester/tests/446.sh +++ b/tester/tests/446.sh @@ -1 +1,2 @@ -echo hola ||| cat +ls -la > Docs/bonjour +cat Docs/bonjour diff --git a/tester/tests/447.sh b/tester/tests/447.sh index b8e2366..0153624 100644 --- a/tester/tests/447.sh +++ b/tester/tests/447.sh @@ -1 +1,2 @@ -ech|o hola | cat +pwd>bonjour +cat bonjour diff --git a/tester/tests/448.sh b/tester/tests/448.sh index 019c53b..7d801df 100644 --- a/tester/tests/448.sh +++ b/tester/tests/448.sh @@ -1 +1,2 @@ -cat Makefile | cat -e | cat -e +pwd > bonjour +cat bonjour diff --git a/tester/tests/449.sh b/tester/tests/449.sh index 3e659b3..4f21d71 100644 --- a/tester/tests/449.sh +++ b/tester/tests/449.sh @@ -1 +1 @@ -cat Makefile | grep srcs | cat -e +echo hola > > bonjour diff --git a/tester/tests/450.sh b/tester/tests/450.sh index 728efb3..12dde77 100644 --- a/tester/tests/450.sh +++ b/tester/tests/450.sh @@ -1 +1 @@ -cat Makefile | grep srcs | grep srcs | cat -e +echo hola < < bonjour diff --git a/tester/tests/451.sh b/tester/tests/451.sh index 334ca13..314e454 100644 --- a/tester/tests/451.sh +++ b/tester/tests/451.sh @@ -1 +1 @@ -cat Makefile | grep pr | head -n 5 | cd file_not_exist +echo hola >>> bonjour diff --git a/tester/tests/452.sh b/tester/tests/452.sh index 48ca0aa..ef0c201 100644 --- a/tester/tests/452.sh +++ b/tester/tests/452.sh @@ -1 +1,2 @@ -cat Makefile | grep pr | head -n 5 | hello +> bonjour echo hola +cat bonjour diff --git a/tester/tests/453.sh b/tester/tests/453.sh index 921f0dd..f225bf2 100644 --- a/tester/tests/453.sh +++ b/tester/tests/453.sh @@ -1 +1,2 @@ -export HOLA=bonjour | cat -e | cat -e +> bonjour | echo hola +cat bonjour diff --git a/tester/tests/454.sh b/tester/tests/454.sh index 9c3e933..b25280c 100644 --- a/tester/tests/454.sh +++ b/tester/tests/454.sh @@ -1 +1,2 @@ -unset HOLA | cat -e +prout hola > bonjour +ls diff --git a/tester/tests/455.sh b/tester/tests/455.sh index 862e97b..a52219e 100644 --- a/tester/tests/455.sh +++ b/tester/tests/455.sh @@ -1,2 +1,3 @@ -export HOLA | echo hola -env | grep PROUT +echo hola > hello >> hello >> hello +ls +cat hello diff --git a/tester/tests/456.sh b/tester/tests/456.sh index 1ee088a..b60a87e 100644 --- a/tester/tests/456.sh +++ b/tester/tests/456.sh @@ -1 +1,3 @@ -export | echo hola +echo hola > hello >> hello >> hello +echo hola >> hello +cat < hello diff --git a/tester/tests/457.sh b/tester/tests/457.sh index 9c28ae7..480a021 100644 --- a/tester/tests/457.sh +++ b/tester/tests/457.sh @@ -1 +1,4 @@ -sleep 3 | sleep 3 +echo hola > hello >> hello >> hello +echo hola >> hello +echo hola > hello >> hello >> hello +cat < hello diff --git a/tester/tests/458.sh b/tester/tests/458.sh index 25bf1d9..6825283 100644 --- a/tester/tests/458.sh +++ b/tester/tests/458.sh @@ -1 +1,3 @@ -sleep 3 | exit +echo hola >> hello >> hello > hello +echo hola >> hello +cat < hello diff --git a/tester/tests/459.sh b/tester/tests/459.sh index 71e8e5c..9f6cb6b 100644 --- a/tester/tests/459.sh +++ b/tester/tests/459.sh @@ -1 +1,4 @@ -exit | sleep 3 +echo hola >> hello >> hello > hello +echo hola >> hello +echo hola >> hello >> hello > hello +cat < hello diff --git a/tester/tests/460.sh b/tester/tests/460.sh index 847b20f..8fe3736 100644 --- a/tester/tests/460.sh +++ b/tester/tests/460.sh @@ -1,3 +1,4 @@ -echo hola > a ->>b echo que tal -cat a | c | cat +echo hola > hello +echo hola >> hello >> hello >> hello +echo hola >> hello +cat < hello diff --git a/tester/tests/461.sh b/tester/tests/461.sh index 4d5d95c..6af4290 100644 --- a/tester/tests/461.sh +++ b/tester/tests/461.sh @@ -1,2 +1,3 @@ -echo hola > bonjour -cat bonjour +echo hola > hello +echo hey > bonjour +echo > bonjour -cat bonjour +echo hola > hello +echo hey > bonjour +echo bonjour -echo que tal >> bonjour -cat < bonjour +echo hey > hello +rm bonjour hello +echo hola > bonjour > hello > bonjour +cat bonjour +cat hello diff --git a/tester/tests/464.sh b/tester/tests/464.sh index 497d844..e2c908e 100644 --- a/tester/tests/464.sh +++ b/tester/tests/464.sh @@ -1,4 +1,5 @@ echo hola > bonjour -rm bonjour -echo que tal >> bonjour -cat < bonjour +echo hey > hello +echo hola > bonjour > hello > bonjour +cat bonjour +cat hello diff --git a/tester/tests/465.sh b/tester/tests/465.sh index f196992..a6cd8b5 100644 --- a/tester/tests/465.sh +++ b/tester/tests/465.sh @@ -1,2 +1,6 @@ -echo hola que tal > bonjour +echo hola > bonjour +echo hey > hello +rm bonjour hello +echo hola > bonjour >> hello > bonjour cat bonjour +cat hello diff --git a/tester/tests/466.sh b/tester/tests/466.sh index c85bd03..e2c908e 100644 --- a/tester/tests/466.sh +++ b/tester/tests/466.sh @@ -1,2 +1,5 @@ -echo hola que tal > /tmp/bonjour -cat -e /tmp/bonjour +echo hola > bonjour +echo hey > hello +echo hola > bonjour > hello > bonjour +cat bonjour +cat hello diff --git a/tester/tests/467.sh b/tester/tests/467.sh index f8d7345..5850fe5 100644 --- a/tester/tests/467.sh +++ b/tester/tests/467.sh @@ -1,3 +1,6 @@ -export HOLA=hey -echo bonjour > $HOLA -echo $HOLA +echo hola > bonjour +echo hey > hello +rm bonjour hello +echo hola > bonjour > hello >> bonjour +cat bonjour +cat hello diff --git a/tester/tests/468.sh b/tester/tests/468.sh index 2fb364d..0282668 100644 --- a/tester/tests/468.sh +++ b/tester/tests/468.sh @@ -1,2 +1,5 @@ -whereis grep > Docs/bonjour -cat Docs/bonjour +echo hola > bonjour +echo hey > hello +echo hola > bonjour > hello >> bonjour +cat bonjour +cat hello diff --git a/tester/tests/469.sh b/tester/tests/469.sh index 21ee061..9e952ee 100644 --- a/tester/tests/469.sh +++ b/tester/tests/469.sh @@ -1,2 +1,6 @@ -ls -la > Docs/bonjour -cat Docs/bonjour +echo hola > bonjour +echo hey > hello +rm bonjour hello +echo hola >> bonjour > hello > bonjour +cat bonjour +cat hello diff --git a/tester/tests/470.sh b/tester/tests/470.sh index 0153624..52ac398 100644 --- a/tester/tests/470.sh +++ b/tester/tests/470.sh @@ -1,2 +1,5 @@ -pwd>bonjour +echo hola > bonjour +echo hey > hello +echo hola >> bonjour > hello > bonjour cat bonjour +cat hello diff --git a/tester/tests/471.sh b/tester/tests/471.sh index 7d801df..8c6f910 100644 --- a/tester/tests/471.sh +++ b/tester/tests/471.sh @@ -1,2 +1,6 @@ -pwd > bonjour +echo hola > bonjour +echo hey > hello +rm bonjour hello +echo hola >> bonjour >> hello >> bonjour cat bonjour +cat hello diff --git a/tester/tests/472.sh b/tester/tests/472.sh index 4f21d71..a43f5e9 100644 --- a/tester/tests/472.sh +++ b/tester/tests/472.sh @@ -1 +1,5 @@ -echo hola > > bonjour +echo hola > bonjour +echo hey > hello +echo hola >> bonjour >> hello >> bonjour +cat bonjour +cat hello diff --git a/tester/tests/473.sh b/tester/tests/473.sh index 12dde77..7759e17 100644 --- a/tester/tests/473.sh +++ b/tester/tests/473.sh @@ -1 +1,2 @@ -echo hola < < bonjour +> bonjour echo hola bonjour +cat bonjour diff --git a/tester/tests/474.sh b/tester/tests/474.sh index 314e454..d737d3f 100644 --- a/tester/tests/474.sh +++ b/tester/tests/474.sh @@ -1 +1,3 @@ -echo hola >>> bonjour +>bonjour echo > hola>bonjour>hola>>bonjour>hola hey >bonjour hola >hola +cat bonjour +cat hola diff --git a/tester/tests/475.sh b/tester/tests/475.sh index ef0c201..5af4bf3 100644 --- a/tester/tests/475.sh +++ b/tester/tests/475.sh @@ -1,2 +1,6 @@ -> bonjour echo hola -cat bonjour +echo bonjour > hola1 +echo hello > hola2 +echo 2 >hola1 >> hola2 +ls +cat hola1 +cat hola2 diff --git a/tester/tests/476.sh b/tester/tests/476.sh index f225bf2..d1045e8 100644 --- a/tester/tests/476.sh +++ b/tester/tests/476.sh @@ -1,2 +1,6 @@ -> bonjour | echo hola -cat bonjour +echo bonjour > hola1 +echo hello > hola2 +echo 2 >>hola1 > hola2 +ls +cat hola1 +cat hola2 diff --git a/tester/tests/477.sh b/tester/tests/477.sh index b25280c..ddcf050 100644 --- a/tester/tests/477.sh +++ b/tester/tests/477.sh @@ -1,2 +1,2 @@ -prout hola > bonjour +> pwd ls diff --git a/tester/tests/478.sh b/tester/tests/478.sh index a52219e..1011b59 100644 --- a/tester/tests/478.sh +++ b/tester/tests/478.sh @@ -1,3 +1 @@ -echo hola > hello >> hello >> hello -ls -cat hello +< pwd diff --git a/tester/tests/479.sh b/tester/tests/479.sh index b60a87e..e1aaaa2 100644 --- a/tester/tests/479.sh +++ b/tester/tests/479.sh @@ -1,3 +1 @@ -echo hola > hello >> hello >> hello -echo hola >> hello -cat < hello +cat hello >> hello >> hello -echo hola >> hello -echo hola > hello >> hello >> hello -cat < hello +cat > hello >> hello > hello -echo hola >> hello -cat < hello +cat <../pwd diff --git a/tester/tests/482.sh b/tester/tests/482.sh index 9f6cb6b..617ac1f 100644 --- a/tester/tests/482.sh +++ b/tester/tests/482.sh @@ -1,4 +1 @@ -echo hola >> hello >> hello > hello -echo hola >> hello -echo hola >> hello >> hello > hello -cat < hello +cat >> diff --git a/tester/tests/483.sh b/tester/tests/483.sh index 8fe3736..8428d2c 100644 --- a/tester/tests/483.sh +++ b/tester/tests/483.sh @@ -1,4 +1 @@ -echo hola > hello -echo hola >> hello >> hello >> hello -echo hola >> hello -cat < hello +cat >>> diff --git a/tester/tests/484.sh b/tester/tests/484.sh index 6af4290..b416591 100644 --- a/tester/tests/484.sh +++ b/tester/tests/484.sh @@ -1,3 +1 @@ -echo hola > hello -echo hey > bonjour -echo > << diff --git a/tester/tests/485.sh b/tester/tests/485.sh index da8ea0f..887cd38 100644 --- a/tester/tests/485.sh +++ b/tester/tests/485.sh @@ -1,3 +1 @@ -echo hola > hello -echo hey > bonjour -echo > > >> << >> diff --git a/tester/tests/486.sh b/tester/tests/486.sh index ddf6dae..f41fe55 100644 --- a/tester/tests/486.sh +++ b/tester/tests/486.sh @@ -1,6 +1 @@ -echo hola > bonjour -echo hey > hello -rm bonjour hello -echo hola > bonjour > hello > bonjour -cat bonjour -cat hello +cat < ls diff --git a/tester/tests/487.sh b/tester/tests/487.sh index e2c908e..bb4972b 100644 --- a/tester/tests/487.sh +++ b/tester/tests/487.sh @@ -1,5 +1 @@ -echo hola > bonjour -echo hey > hello -echo hola > bonjour > hello > bonjour -cat bonjour -cat hello +cat < ls > ls diff --git a/tester/tests/488.sh b/tester/tests/488.sh index a6cd8b5..88409f2 100644 --- a/tester/tests/488.sh +++ b/tester/tests/488.sh @@ -1,6 +1,2 @@ -echo hola > bonjour -echo hey > hello -rm bonjour hello -echo hola > bonjour >> hello > bonjour -cat bonjour -cat hello +cat > ls1 < ls2 +ls diff --git a/tester/tests/489.sh b/tester/tests/489.sh index e2c908e..023e7f3 100644 --- a/tester/tests/489.sh +++ b/tester/tests/489.sh @@ -1,5 +1,2 @@ -echo hola > bonjour -echo hey > hello -echo hola > bonjour > hello > bonjour -cat bonjour -cat hello +>>hola +cat hola diff --git a/tester/tests/490.sh b/tester/tests/490.sh index 5850fe5..9fbbe6c 100644 --- a/tester/tests/490.sh +++ b/tester/tests/490.sh @@ -1,6 +1,2 @@ echo hola > bonjour -echo hey > hello -rm bonjour hello -echo hola > bonjour > hello >> bonjour -cat bonjour -cat hello +cat < bonjour diff --git a/tester/tests/491.sh b/tester/tests/491.sh index 0282668..4513ca6 100644 --- a/tester/tests/491.sh +++ b/tester/tests/491.sh @@ -1,5 +1,2 @@ -echo hola > bonjour -echo hey > hello -echo hola > bonjour > hello >> bonjour -cat bonjour -cat hello +echo hola >bonjour +cat bonjour -echo hey > hello -rm bonjour hello -echo hola >> bonjour > hello > bonjour -cat bonjour -cat hello +echo hola>bonjour +cat bonjour -echo hey > hello -echo hola >> bonjour > hello > bonjour -cat bonjour -cat hello +echo hola> bonjour +cat< bonjour diff --git a/tester/tests/494.sh b/tester/tests/494.sh index 8c6f910..2e3337f 100644 --- a/tester/tests/494.sh +++ b/tester/tests/494.sh @@ -1,6 +1,2 @@ -echo hola > bonjour -echo hey > hello -rm bonjour hello -echo hola >> bonjour >> hello >> bonjour -cat bonjour -cat hello +echo hola >bonjour +cat< bonjour diff --git a/tester/tests/495.sh b/tester/tests/495.sh index a43f5e9..3705e59 100644 --- a/tester/tests/495.sh +++ b/tester/tests/495.sh @@ -1,5 +1,2 @@ -echo hola > bonjour -echo hey > hello -echo hola >> bonjour >> hello >> bonjour -cat bonjour -cat hello +echo hola > bonjour +cat < bonjour diff --git a/tester/tests/496.sh b/tester/tests/496.sh index 7759e17..251ff89 100644 --- a/tester/tests/496.sh +++ b/tester/tests/496.sh @@ -1,2 +1,2 @@ -> bonjour echo hola bonjour -cat bonjour +echo hola > srcs/bonjour +cat < srcs/bonjour diff --git a/tester/tests/497.sh b/tester/tests/497.sh index d737d3f..a78021d 100644 --- a/tester/tests/497.sh +++ b/tester/tests/497.sh @@ -1,3 +1,2 @@ ->bonjour echo > hola>bonjour>hola>>bonjour>hola hey >bonjour hola >hola -cat bonjour -cat hola +echo hola >srcs/bonjour +cat hola1 -echo hello > hola2 -echo 2 >hola1 >> hola2 -ls -cat hola1 -cat hola2 +echo hola > bonjour +echo que tal >> bonjour +cat < bonjour diff --git a/tester/tests/499.sh b/tester/tests/499.sh index d1045e8..497d844 100644 --- a/tester/tests/499.sh +++ b/tester/tests/499.sh @@ -1,6 +1,4 @@ -echo bonjour > hola1 -echo hello > hola2 -echo 2 >>hola1 > hola2 -ls -cat hola1 -cat hola2 +echo hola > bonjour +rm bonjour +echo que tal >> bonjour +cat < bonjour diff --git a/tester/tests/500.sh b/tester/tests/500.sh index ddcf050..ed9d097 100644 --- a/tester/tests/500.sh +++ b/tester/tests/500.sh @@ -1,2 +1,2 @@ -> pwd -ls +e'c'"h"o hola > bonjour +cat 'bo'"n"jour diff --git a/tester/tests/501.sh b/tester/tests/501.sh index 1011b59..c818a10 100644 --- a/tester/tests/501.sh +++ b/tester/tests/501.sh @@ -1 +1,4 @@ -< pwd +echo hola > bonjour hey +ls +cat bonjour +cat hey diff --git a/tester/tests/502.sh b/tester/tests/502.sh index e1aaaa2..fcd9e66 100644 --- a/tester/tests/502.sh +++ b/tester/tests/502.sh @@ -1 +1,4 @@ -cat srcs/bonjour +echo hey > srcs/hello +>srcs/bonjour >srcs/hello srcs/bonjour +echo hey > srcs/hello +rm srcs/bonjour srcs/hello +>srcs/bonjour >srcs/hello srcs/bonjour +echo hey > srcs/hello +>srcs/bonjour srcs/hello +cat srcs/bonjour +cat srcs/hello diff --git a/tester/tests/505.sh b/tester/tests/505.sh index 617ac1f..4d4a87c 100644 --- a/tester/tests/505.sh +++ b/tester/tests/505.sh @@ -1 +1,6 @@ -cat >> +echo hola > srcs/bonjour +echo hey > srcs/hello +rm srcs/bonjour srcs/hello +>srcs/bonjour srcs/hello +ls srcs +cat srcs/bonjour diff --git a/tester/tests/506.sh b/tester/tests/506.sh index 8428d2c..f4a18a7 100644 --- a/tester/tests/506.sh +++ b/tester/tests/506.sh @@ -1 +1,4 @@ -cat >>> +echo hola > ../bonjour +echo hey > ../hello +>../bonjour >../hello > << +echo hola > ../bonjour +echo hey > ../hello +rm ../bonjour ../hello +>../bonjour >../hello > > >> << >> +echo hola > ../bonjour +echo hey > ../hello +>../bonjour ../hello +cat ../bonjour +cat ../hello diff --git a/tester/tests/509.sh b/tester/tests/509.sh index f41fe55..efa5562 100644 --- a/tester/tests/509.sh +++ b/tester/tests/509.sh @@ -1 +1,6 @@ -cat < ls +echo hola > ../bonjour +echo hey > ../hello +rm ../bonjour ../hello +>../bonjour ../hello +ls .. +cat ../bonjour diff --git a/tester/tests/510.sh b/tester/tests/510.sh index bb4972b..ae76d15 100644 --- a/tester/tests/510.sh +++ b/tester/tests/510.sh @@ -1 +1,5 @@ -cat < ls > ls +echo hola > srcs/bonjour +echo hey > srcs/hello +>srcs/bonjour >>srcs/hello ls1 < ls2 -ls +echo hola > srcs/bonjour +echo hey > srcs/hello +>>srcs/bonjour >srcs/hello >hola -cat hola +echo hola > srcs/bonjour +echo hey > srcs/hello +>>srcs/bonjour >>srcs/hello bonjour -cat < bonjour +echo hola > srcs/bonjour +echo hey > srcs/hello +>srcs/bonjour >srcs/hello +cat srcs/bonjour +cat srcs/hello diff --git a/tester/tests/514.sh b/tester/tests/514.sh index 4513ca6..13163c0 100644 --- a/tester/tests/514.sh +++ b/tester/tests/514.sh @@ -1,2 +1,5 @@ -echo hola >bonjour -cat srcs/bonjour +echo hey > srcs/hello +>>srcs/bonjour srcs/hello +cat srcs/bonjour +cat srcs/hello diff --git a/tester/tests/515.sh b/tester/tests/515.sh index 1e3ba7c..4faf172 100644 --- a/tester/tests/515.sh +++ b/tester/tests/515.sh @@ -1,2 +1,5 @@ -echo hola>bonjour -cat srcs/bonjour +echo hey > srcs/hello +>>srcs/bonjour >srcs/hello +cat srcs/bonjour +cat srcs/hello diff --git a/tester/tests/516.sh b/tester/tests/516.sh index c58c3cf..3e2c4a3 100644 --- a/tester/tests/516.sh +++ b/tester/tests/516.sh @@ -1,2 +1,5 @@ -echo hola> bonjour -cat< bonjour +echo hola > srcs/bonjour +echo hey > srcs/hello +>srcs/bonjour >>srcs/hello +cat srcs/bonjour +cat srcs/hello diff --git a/tester/tests/517.sh b/tester/tests/517.sh index 2e3337f..7c26968 100644 --- a/tester/tests/517.sh +++ b/tester/tests/517.sh @@ -1,2 +1,5 @@ -echo hola >bonjour -cat< bonjour +echo hola > bonjour +echo hey > hello +hello +cat bonjour +cat hello diff --git a/tester/tests/518.sh b/tester/tests/518.sh index 3705e59..c331ebd 100644 --- a/tester/tests/518.sh +++ b/tester/tests/518.sh @@ -1,2 +1,5 @@ -echo hola > bonjour -cat < bonjour +echo hola > bonjour +echo hey > hello +>bonjour >hello < prout +cat bonjour +cat hello diff --git a/tester/tests/519.sh b/tester/tests/519.sh index 251ff89..85d2ac9 100644 --- a/tester/tests/519.sh +++ b/tester/tests/519.sh @@ -1,2 +1,6 @@ -echo hola > srcs/bonjour -cat < srcs/bonjour +echo hola > bonjour +echo hey > hello +rm bonjour hello +>bonjour >hello < prout +cat bonjour +cat hello diff --git a/tester/tests/520.sh b/tester/tests/520.sh index a78021d..e109c78 100644 --- a/tester/tests/520.sh +++ b/tester/tests/520.sh @@ -1,2 +1,5 @@ -echo hola >srcs/bonjour -cat bonjour +echo hey > hello +>bonjour bonjour -echo que tal >> bonjour -cat < bonjour +echo hey > hello +rm bonjour hello +>bonjour bonjour -rm bonjour -echo que tal >> bonjour -cat < bonjour + bonjour +cat bonjour diff --git a/tester/tests/523.sh b/tester/tests/523.sh index ed9d097..9ac3197 100644 --- a/tester/tests/523.sh +++ b/tester/tests/523.sh @@ -1,2 +1,3 @@ -e'c'"h"o hola > bonjour -cat 'bo'"n"jour +rm -f bonjour +rm bonjour > bonjour +ls -l bonjour diff --git a/tester/tests/524.sh b/tester/tests/524.sh index c818a10..05cdda5 100644 --- a/tester/tests/524.sh +++ b/tester/tests/524.sh @@ -1,4 +1,3 @@ -echo hola > bonjour hey +export HOLA="bonjour hello" +>$HOLA ls -cat bonjour -cat hey diff --git a/tester/tests/525.sh b/tester/tests/525.sh index fcd9e66..d0d8c4c 100644 --- a/tester/tests/525.sh +++ b/tester/tests/525.sh @@ -1,4 +1,3 @@ -echo hola > srcs/bonjour -echo hey > srcs/hello ->srcs/bonjour >srcs/hello "$HOLA" +ls diff --git a/tester/tests/526.sh b/tester/tests/526.sh index a694487..1bdc5d6 100644 --- a/tester/tests/526.sh +++ b/tester/tests/526.sh @@ -1,6 +1,3 @@ -echo hola > srcs/bonjour -echo hey > srcs/hello -rm srcs/bonjour srcs/hello ->srcs/bonjour >srcs/hello $"HOLA" +ls diff --git a/tester/tests/527.sh b/tester/tests/527.sh index 70797b8..88fe06f 100644 --- a/tester/tests/527.sh +++ b/tester/tests/527.sh @@ -1,5 +1,3 @@ -echo hola > srcs/bonjour -echo hey > srcs/hello ->srcs/bonjour srcs/hello -cat srcs/bonjour -cat srcs/hello +export HOLA="bonjour hello" +>$HOLA>hey +ls diff --git a/tester/tests/528.sh b/tester/tests/528.sh index 4d4a87c..1beebf8 100644 --- a/tester/tests/528.sh +++ b/tester/tests/528.sh @@ -1,6 +1,3 @@ -echo hola > srcs/bonjour -echo hey > srcs/hello -rm srcs/bonjour srcs/hello ->srcs/bonjour srcs/hello -ls srcs -cat srcs/bonjour +export HOLA="bonjour hello" +>hey>$HOLA +ls diff --git a/tester/tests/529.sh b/tester/tests/529.sh index f4a18a7..389e946 100644 --- a/tester/tests/529.sh +++ b/tester/tests/529.sh @@ -1,4 +1,3 @@ -echo hola > ../bonjour -echo hey > ../hello ->../bonjour >../hello hey>$HOLA>hey>hey +ls diff --git a/tester/tests/530.sh b/tester/tests/530.sh index f831c29..09f807c 100644 --- a/tester/tests/530.sh +++ b/tester/tests/530.sh @@ -1,6 +1,6 @@ -echo hola > ../bonjour -echo hey > ../hello -rm ../bonjour ../hello ->../bonjour >../hello /tmp/a > /tmp/b > /tmp/c +cat /tmp/a +cat /tmp/b +cat /tmp/c diff --git a/tester/tests/531.sh b/tester/tests/531.sh index 4d21984..f89dccb 100644 --- a/tester/tests/531.sh +++ b/tester/tests/531.sh @@ -1,5 +1,6 @@ -echo hola > ../bonjour -echo hey > ../hello ->../bonjour ../hello -cat ../bonjour -cat ../hello +echo Amour Tu es Horrible > a +echo 0123456789 > b +echo Prout > c + !!!!! Contenu du fichier a : "Amour Tu es Horrible" + !!!!! Contenu du fichier b : "0123456789" + !!!!! Contenu du fichier c : "Prout" diff --git a/tester/tests/532.sh b/tester/tests/532.sh index efa5562..909ee9b 100644 --- a/tester/tests/532.sh +++ b/tester/tests/532.sh @@ -1,6 +1,4 @@ -echo hola > ../bonjour -echo hey > ../hello -rm ../bonjour ../hello ->../bonjour ../hello -ls .. -cat ../bonjour +echo Amour Tu es Horrible > a +echo 0123456789 > b +echo Prout > c + srcs/bonjour -echo hey > srcs/hello ->srcs/bonjour >>srcs/hello a +echo 0123456789 > b +echo Prout > c + srcs/bonjour -echo hey > srcs/hello ->>srcs/bonjour >srcs/hello a +echo 0123456789 > b +echo Prout > c +>a ls >b >>c >d +cat a +cat b +cat c +cat d diff --git a/tester/tests/535.sh b/tester/tests/535.sh index 72cd4dc..b9aa8ad 100644 --- a/tester/tests/535.sh +++ b/tester/tests/535.sh @@ -1,5 +1,8 @@ -echo hola > srcs/bonjour -echo hey > srcs/hello ->>srcs/bonjour >>srcs/hello a +echo 0123456789 > b +echo Prout > c +>a ls >b >>c >d +cat a +cat b +cat c +cat d diff --git a/tester/tests/536.sh b/tester/tests/536.sh index 6724324..a4c9096 100644 --- a/tester/tests/536.sh +++ b/tester/tests/536.sh @@ -1,5 +1,7 @@ -echo hola > srcs/bonjour -echo hey > srcs/hello ->srcs/bonjour >srcs/hello -cat srcs/bonjour -cat srcs/hello +echo Amour Tu es Horrible > a +echo 0123456789 > b +echo Prout > c +echo hola > a > b > c +cat a +cat b +cat c diff --git a/tester/tests/537.sh b/tester/tests/537.sh index 13163c0..8056bfe 100644 --- a/tester/tests/537.sh +++ b/tester/tests/537.sh @@ -1,5 +1,6 @@ -echo hola > srcs/bonjour -echo hey > srcs/hello ->>srcs/bonjour srcs/hello -cat srcs/bonjour -cat srcs/hello +echo Amour Tu es Horrible > a +echo 0123456789 > b +echo Prout > c +mkdir dir +ls -la > dir/bonjour +cat dir/bonjour diff --git a/tester/tests/538.sh b/tester/tests/538.sh index 4faf172..8898442 100644 --- a/tester/tests/538.sh +++ b/tester/tests/538.sh @@ -1,5 +1,5 @@ -echo hola > srcs/bonjour -echo hey > srcs/hello ->>srcs/bonjour >srcs/hello -cat srcs/bonjour -cat srcs/hello +echo Amour Tu es Horrible > a +echo 0123456789 > b +echo Prout > c + srcs/bonjour -echo hey > srcs/hello ->srcs/bonjour >>srcs/hello -cat srcs/bonjour -cat srcs/hello +echo Amour Tu es Horrible > a +echo 0123456789 > b +echo Prout > c +>d cat >e +cat a +cat d +cat e diff --git a/tester/tests/540.sh b/tester/tests/540.sh index 7c26968..4775105 100644 --- a/tester/tests/540.sh +++ b/tester/tests/540.sh @@ -1,5 +1,6 @@ -echo hola > bonjour -echo hey > hello -hello -cat bonjour -cat hello +echo Amour Tu es Horrible > a +echo 0123456789 > b +echo Prout > c +< a > b cat > hey >> d +cat d +ls diff --git a/tester/tests/541.sh b/tester/tests/541.sh index c331ebd..64a249f 100644 --- a/tester/tests/541.sh +++ b/tester/tests/541.sh @@ -1,5 +1,4 @@ -echo hola > bonjour -echo hey > hello ->bonjour >hello < prout -cat bonjour -cat hello +echo Amour Tu es Horrible > a +echo 0123456789 > b +echo Prout > c +cat << hola diff --git a/tester/tests/542.sh b/tester/tests/542.sh index 85d2ac9..6ee5298 100644 --- a/tester/tests/542.sh +++ b/tester/tests/542.sh @@ -1,6 +1,4 @@ -echo hola > bonjour -echo hey > hello -rm bonjour hello ->bonjour >hello < prout -cat bonjour -cat hello +echo Amour Tu es Horrible > a +echo 0123456789 > b +echo Prout > c +cat << 'hola' diff --git a/tester/tests/543.sh b/tester/tests/543.sh index e109c78..889aef5 100644 --- a/tester/tests/543.sh +++ b/tester/tests/543.sh @@ -1,5 +1,4 @@ -echo hola > bonjour -echo hey > hello ->bonjour a +echo 0123456789 > b +echo Prout > c +cat << "hola" diff --git a/tester/tests/544.sh b/tester/tests/544.sh index 43ac102..b4a001f 100644 --- a/tester/tests/544.sh +++ b/tester/tests/544.sh @@ -1,5 +1,4 @@ -echo hola > bonjour -echo hey > hello -rm bonjour hello ->bonjour a +echo 0123456789 > b +echo Prout > c +cat << ho"la" diff --git a/tester/tests/545.sh b/tester/tests/545.sh index a220839..fda221e 100644 --- a/tester/tests/545.sh +++ b/tester/tests/545.sh @@ -1,3 +1,4 @@ -echo hola > bonjour - bonjour -cat bonjour +echo Amour Tu es Horrible > a +echo 0123456789 > b +echo Prout > c +cat << $HOME diff --git a/tester/tests/546.sh b/tester/tests/546.sh index 9ac3197..646ed1f 100644 --- a/tester/tests/546.sh +++ b/tester/tests/546.sh @@ -1,3 +1,5 @@ -rm -f bonjour -rm bonjour > bonjour -ls -l bonjour +echo Amour Tu es Horrible > a +echo 0123456789 > b +echo Prout > c +cat << hola > bonjour +cat bonjour diff --git a/tester/tests/547.sh b/tester/tests/547.sh index 05cdda5..aed2d97 100644 --- a/tester/tests/547.sh +++ b/tester/tests/547.sh @@ -1,3 +1,4 @@ -export HOLA="bonjour hello" ->$HOLA -ls +echo Amour Tu es Horrible > a +echo 0123456789 > b +echo Prout > c +cat << hola | rev diff --git a/tester/tests/548.sh b/tester/tests/548.sh index d0d8c4c..ca7dca9 100644 --- a/tester/tests/548.sh +++ b/tester/tests/548.sh @@ -1,3 +1,4 @@ -export HOLA="bonjour hello" ->"$HOLA" -ls +echo Amour Tu es Horrible > a +echo 0123456789 > b +echo Prout > c +<< hola diff --git a/tester/tests/549.sh b/tester/tests/549.sh index 1bdc5d6..aae0f58 100644 --- a/tester/tests/549.sh +++ b/tester/tests/549.sh @@ -1,3 +1,4 @@ -export HOLA="bonjour hello" ->$"HOLA" -ls +echo Amour Tu es Horrible > a +echo 0123456789 > b +echo Prout > c +<$HOLA>hey -ls +echo Amour Tu es Horrible > a +echo 0123456789 > b +echo Prout > c +cat << diff --git a/tester/tests/551.sh b/tester/tests/551.sh index 1beebf8..75e1873 100644 --- a/tester/tests/551.sh +++ b/tester/tests/551.sh @@ -1,3 +1,4 @@ -export HOLA="bonjour hello" ->hey>$HOLA -ls +echo Amour Tu es Horrible > a +echo 0123456789 > b +echo Prout > c +cat << prout << lol << koala diff --git a/tester/tests/552.sh b/tester/tests/552.sh index 389e946..b4bed3d 100644 --- a/tester/tests/552.sh +++ b/tester/tests/552.sh @@ -1,3 +1,4 @@ -export HOLA="bonjour hello" ->hey>$HOLA>hey>hey -ls +echo Amour Tu es Horrible > a +echo 0123456789 > b +echo Prout > c +prout << lol << cat << koala diff --git a/tester/tests/553.sh b/tester/tests/553.sh index 09f807c..2c6dede 100644 --- a/tester/tests/553.sh +++ b/tester/tests/553.sh @@ -1,6 +1,4 @@ -export A=hey -export A B=Hola D E C="Que Tal" -echo $PROUT$B$C > /tmp/a > /tmp/b > /tmp/c -cat /tmp/a -cat /tmp/b -cat /tmp/c +echo Amour Tu es Horrible > a +echo 0123456789 > b +echo Prout > c +<< $hola diff --git a/tester/tests/554.sh b/tester/tests/554.sh index f89dccb..f830e83 100644 --- a/tester/tests/554.sh +++ b/tester/tests/554.sh @@ -1,6 +1,4 @@ echo Amour Tu es Horrible > a echo 0123456789 > b echo Prout > c - !!!!! Contenu du fichier a : "Amour Tu es Horrible" - !!!!! Contenu du fichier b : "0123456789" - !!!!! Contenu du fichier c : "Prout" +<< $"hola"$"b" diff --git a/tester/tests/555.sh b/tester/tests/555.sh index 909ee9b..dd8c846 100644 --- a/tester/tests/555.sh +++ b/tester/tests/555.sh @@ -1,4 +1,4 @@ echo Amour Tu es Horrible > a echo 0123456789 > b echo Prout > c - a echo 0123456789 > b echo Prout > c - a echo 0123456789 > b echo Prout > c ->a ls >b >>c >d -cat a -cat b -cat c -cat d +echo hola <<<< bonjour diff --git a/tester/tests/558.sh b/tester/tests/558.sh index b9aa8ad..6ef1c07 100644 --- a/tester/tests/558.sh +++ b/tester/tests/558.sh @@ -1,8 +1,4 @@ echo Amour Tu es Horrible > a echo 0123456789 > b echo Prout > c ->a ls >b >>c >d -cat a -cat b -cat c -cat d +echo hola <<<<< bonjour diff --git a/tester/tests/559.sh b/tester/tests/559.sh deleted file mode 100644 index a4c9096..0000000 --- a/tester/tests/559.sh +++ /dev/null @@ -1,7 +0,0 @@ -echo Amour Tu es Horrible > a -echo 0123456789 > b -echo Prout > c -echo hola > a > b > c -cat a -cat b -cat c diff --git a/tester/tests/560.sh b/tester/tests/560.sh deleted file mode 100644 index 8056bfe..0000000 --- a/tester/tests/560.sh +++ /dev/null @@ -1,6 +0,0 @@ -echo Amour Tu es Horrible > a -echo 0123456789 > b -echo Prout > c -mkdir dir -ls -la > dir/bonjour -cat dir/bonjour diff --git a/tester/tests/561.sh b/tester/tests/561.sh deleted file mode 100644 index 8898442..0000000 --- a/tester/tests/561.sh +++ /dev/null @@ -1,5 +0,0 @@ -echo Amour Tu es Horrible > a -echo 0123456789 > b -echo Prout > c - a -echo 0123456789 > b -echo Prout > c ->d cat >e -cat a -cat d -cat e diff --git a/tester/tests/563.sh b/tester/tests/563.sh deleted file mode 100644 index 4775105..0000000 --- a/tester/tests/563.sh +++ /dev/null @@ -1,6 +0,0 @@ -echo Amour Tu es Horrible > a -echo 0123456789 > b -echo Prout > c -< a > b cat > hey >> d -cat d -ls diff --git a/tester/tests/564.sh b/tester/tests/564.sh deleted file mode 100644 index 64a249f..0000000 --- a/tester/tests/564.sh +++ /dev/null @@ -1,4 +0,0 @@ -echo Amour Tu es Horrible > a -echo 0123456789 > b -echo Prout > c -cat << hola diff --git a/tester/tests/565.sh b/tester/tests/565.sh deleted file mode 100644 index 6ee5298..0000000 --- a/tester/tests/565.sh +++ /dev/null @@ -1,4 +0,0 @@ -echo Amour Tu es Horrible > a -echo 0123456789 > b -echo Prout > c -cat << 'hola' diff --git a/tester/tests/566.sh b/tester/tests/566.sh deleted file mode 100644 index 889aef5..0000000 --- a/tester/tests/566.sh +++ /dev/null @@ -1,4 +0,0 @@ -echo Amour Tu es Horrible > a -echo 0123456789 > b -echo Prout > c -cat << "hola" diff --git a/tester/tests/567.sh b/tester/tests/567.sh deleted file mode 100644 index b4a001f..0000000 --- a/tester/tests/567.sh +++ /dev/null @@ -1,4 +0,0 @@ -echo Amour Tu es Horrible > a -echo 0123456789 > b -echo Prout > c -cat << ho"la" diff --git a/tester/tests/568.sh b/tester/tests/568.sh deleted file mode 100644 index fda221e..0000000 --- a/tester/tests/568.sh +++ /dev/null @@ -1,4 +0,0 @@ -echo Amour Tu es Horrible > a -echo 0123456789 > b -echo Prout > c -cat << $HOME diff --git a/tester/tests/569.sh b/tester/tests/569.sh deleted file mode 100644 index 646ed1f..0000000 --- a/tester/tests/569.sh +++ /dev/null @@ -1,5 +0,0 @@ -echo Amour Tu es Horrible > a -echo 0123456789 > b -echo Prout > c -cat << hola > bonjour -cat bonjour diff --git a/tester/tests/570.sh b/tester/tests/570.sh deleted file mode 100644 index aed2d97..0000000 --- a/tester/tests/570.sh +++ /dev/null @@ -1,4 +0,0 @@ -echo Amour Tu es Horrible > a -echo 0123456789 > b -echo Prout > c -cat << hola | rev diff --git a/tester/tests/571.sh b/tester/tests/571.sh deleted file mode 100644 index ca7dca9..0000000 --- a/tester/tests/571.sh +++ /dev/null @@ -1,4 +0,0 @@ -echo Amour Tu es Horrible > a -echo 0123456789 > b -echo Prout > c -<< hola diff --git a/tester/tests/572.sh b/tester/tests/572.sh deleted file mode 100644 index aae0f58..0000000 --- a/tester/tests/572.sh +++ /dev/null @@ -1,4 +0,0 @@ -echo Amour Tu es Horrible > a -echo 0123456789 > b -echo Prout > c -< a -echo 0123456789 > b -echo Prout > c -cat << diff --git a/tester/tests/574.sh b/tester/tests/574.sh deleted file mode 100644 index 75e1873..0000000 --- a/tester/tests/574.sh +++ /dev/null @@ -1,4 +0,0 @@ -echo Amour Tu es Horrible > a -echo 0123456789 > b -echo Prout > c -cat << prout << lol << koala diff --git a/tester/tests/575.sh b/tester/tests/575.sh deleted file mode 100644 index b4bed3d..0000000 --- a/tester/tests/575.sh +++ /dev/null @@ -1,4 +0,0 @@ -echo Amour Tu es Horrible > a -echo 0123456789 > b -echo Prout > c -prout << lol << cat << koala diff --git a/tester/tests/576.sh b/tester/tests/576.sh deleted file mode 100644 index 2c6dede..0000000 --- a/tester/tests/576.sh +++ /dev/null @@ -1,4 +0,0 @@ -echo Amour Tu es Horrible > a -echo 0123456789 > b -echo Prout > c -<< $hola diff --git a/tester/tests/577.sh b/tester/tests/577.sh deleted file mode 100644 index f830e83..0000000 --- a/tester/tests/577.sh +++ /dev/null @@ -1,4 +0,0 @@ -echo Amour Tu es Horrible > a -echo 0123456789 > b -echo Prout > c -<< $"hola"$"b" diff --git a/tester/tests/578.sh b/tester/tests/578.sh deleted file mode 100644 index dd8c846..0000000 --- a/tester/tests/578.sh +++ /dev/null @@ -1,4 +0,0 @@ -echo Amour Tu es Horrible > a -echo 0123456789 > b -echo Prout > c -<< $"$hola"$$"b" diff --git a/tester/tests/579.sh b/tester/tests/579.sh deleted file mode 100644 index df42a43..0000000 --- a/tester/tests/579.sh +++ /dev/null @@ -1,4 +0,0 @@ -echo Amour Tu es Horrible > a -echo 0123456789 > b -echo Prout > c -<< ho$la$"$a"$$"b" diff --git a/tester/tests/580.sh b/tester/tests/580.sh deleted file mode 100644 index aeda2c4..0000000 --- a/tester/tests/580.sh +++ /dev/null @@ -1,4 +0,0 @@ -echo Amour Tu es Horrible > a -echo 0123456789 > b -echo Prout > c -echo hola <<<< bonjour diff --git a/tester/tests/581.sh b/tester/tests/581.sh deleted file mode 100644 index 6ef1c07..0000000 --- a/tester/tests/581.sh +++ /dev/null @@ -1,4 +0,0 @@ -echo Amour Tu es Horrible > a -echo 0123456789 > b -echo Prout > c -echo hola <<<<< bonjour