From 08106689e5e1eb59045fa87a92bd962ed953880c Mon Sep 17 00:00:00 2001 From: noti0na1 Date: Thu, 10 Feb 2022 13:01:55 -0500 Subject: [PATCH 1/3] Remove stderr test --- ASSTUSER1/redirpipe/redirerror | 1 - 1 file changed, 1 deletion(-) delete mode 100644 ASSTUSER1/redirpipe/redirerror diff --git a/ASSTUSER1/redirpipe/redirerror b/ASSTUSER1/redirpipe/redirerror deleted file mode 100644 index 82c029b..0000000 --- a/ASSTUSER1/redirpipe/redirerror +++ /dev/null @@ -1 +0,0 @@ -ls notafile 2> error.txt -- GitLab From 945002081b92fa8ab312b6d890e9356d80394fe0 Mon Sep 17 00:00:00 2001 From: noti0na1 Date: Thu, 10 Feb 2022 14:38:04 -0500 Subject: [PATCH 2/3] Update the number of tests --- ASSTUSER1/verify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ASSTUSER1/verify.py b/ASSTUSER1/verify.py index cdcbf3a..344e34e 100644 --- a/ASSTUSER1/verify.py +++ b/ASSTUSER1/verify.py @@ -4,7 +4,7 @@ BASIC_GRADE_PER = 2 BASIC_NUM = 3 REDIR_GRADE_PER = 2 -REDIR_NUM = 5 +REDIR_NUM = 4 PIPES_GRADE_PER = 2 PIPES_NUM = 3 -- GitLab From f9d3d39bcfdf784b31ab9abc7949bda00f642184 Mon Sep 17 00:00:00 2001 From: noti0na1 Date: Thu, 10 Feb 2022 14:50:52 -0500 Subject: [PATCH 3/3] adjust point for each test --- ASSTUSER1/verify.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ASSTUSER1/verify.py b/ASSTUSER1/verify.py index 344e34e..49c0d20 100644 --- a/ASSTUSER1/verify.py +++ b/ASSTUSER1/verify.py @@ -1,12 +1,12 @@ import subprocess -BASIC_GRADE_PER = 2 +BASIC_GRADE_PER = 2.2 BASIC_NUM = 3 -REDIR_GRADE_PER = 2 +REDIR_GRADE_PER = 2.2 REDIR_NUM = 4 -PIPES_GRADE_PER = 2 +PIPES_GRADE_PER = 2.2 PIPES_NUM = 3 def basic(tests, helpers): -- GitLab