exam-archive/exam-basedir03/traces/3-1_ft_atoi_base.trace
Tanguy MAZE f9e508d5ef init
2019-06-22 18:23:35 +02:00

167 lines
6.5 KiB
Plaintext

= Host-specific information ====================================================
$> hostname; uname -msr
e2r7p12.42.fr
Darwin 16.7.0 x86_64
$> date
Mon Apr 16 19:26:47 CEST 2018
$> gcc --version
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 9.0.0 (clang-900.0.39.2)
Target: x86_64-apple-darwin16.7.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
$> clang --version
Apple LLVM version 9.0.0 (clang-900.0.39.2)
Target: x86_64-apple-darwin16.7.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
= User files collection ========================================================
Collecting user files from Vogsphere
Repository URL: auto-exam/2018/c-exam-alone-in-the-dark-beginner/practice-exam_20180416/tmaze
= Git history ==================================================================
$> git -C /var/folders/z9/y610tnc50656y9gdqc2npn0h0000gq/T/tmpQddd8T/user log --pretty='%H - %an, %ad : %s'
def6a68de7ba990a12233c975d4611527762306e - Tanguy MAZE, Mon Apr 16 19:26:38 2018 +0200 : ft_atoi_base
d0bce69342072c4cf857b2658df91defb30e63ea - Tanguy MAZE, Mon Apr 16 19:21:45 2018 +0200 : ft_rrange
53309961375cc7b31d03c35ddc3678f5de691731 - Tanguy MAZE, Mon Apr 16 19:04:39 2018 +0200 : max
20eb54d06141449300b95eab630538348803396f - Tanguy MAZE, Mon Apr 16 18:57:09 2018 +0200 : ft_putstr
6012d7148b2639cd80d60ab748de5eaf4a89a224 - Tanguy MAZE, Mon Apr 16 18:52:01 2018 +0200 : aff_z
= Collected files ==========================================
$> ls -lAR /var/folders/z9/y610tnc50656y9gdqc2npn0h0000gq/T/tmpQddd8T/user
total 8
-rw-r--r-- 1 deepthought deepthought 1172 Apr 16 19:26 __GIT_HISTORY
drwxr-xr-x 3 deepthought deepthought 102 Apr 16 19:26 aff_z
drwxr-xr-x 3 deepthought deepthought 102 Apr 16 19:26 ft_atoi_base
drwxr-xr-x 3 deepthought deepthought 102 Apr 16 19:26 ft_putstr
drwxr-xr-x 3 deepthought deepthought 102 Apr 16 19:26 ft_rrange.c
drwxr-xr-x 3 deepthought deepthought 102 Apr 16 19:26 max
/var/folders/z9/y610tnc50656y9gdqc2npn0h0000gq/T/tmpQddd8T/user/aff_z:
total 8
-rw-r--r-- 1 deepthought deepthought 966 Apr 16 19:26 aff_z.c
/var/folders/z9/y610tnc50656y9gdqc2npn0h0000gq/T/tmpQddd8T/user/ft_atoi_base:
total 8
-rw-r--r-- 1 deepthought deepthought 1788 Apr 16 19:26 ft_atoi_base.c
/var/folders/z9/y610tnc50656y9gdqc2npn0h0000gq/T/tmpQddd8T/user/ft_putstr:
total 8
-rw-r--r-- 1 deepthought deepthought 992 Apr 16 19:26 ft_putstr.c
/var/folders/z9/y610tnc50656y9gdqc2npn0h0000gq/T/tmpQddd8T/user/ft_rrange.c:
total 8
-rw-r--r-- 1 deepthought deepthought 1210 Apr 16 19:26 ft_rrange.c
/var/folders/z9/y610tnc50656y9gdqc2npn0h0000gq/T/tmpQddd8T/user/max:
total 8
-rw-r--r-- 1 deepthought deepthought 1105 Apr 16 19:26 max.c
= ft_atoi_base =================================================================
$> clang -Wextra -Wall -Werror ft_atoi_base.c main.c -o user_exe
= Test 1 ===================================================
$> ./a4i7sr2aubcv985u87wts6oo
$> diff -U 3 user_output_test1 test1.output | cat -e
Diff OK :D
= Test 2 ===================================================
$> ./gapz8wafofx60ar02qqtkals "21" "2313" "12"
$> diff -U 3 user_output_test2 test2.output | cat -e
Diff OK :D
= Test 3 ===================================================
$> ./327tn8ewkk7zlxdnz9b92aru "2147483647" "10"
$> diff -U 3 user_output_test3 test3.output | cat -e
Diff OK :D
= Test 4 ===================================================
$> ./ncl9il9chxdp81b7nx922xuw "-2147483648" "10"
$> diff -U 3 user_output_test4 test4.output | cat -e
Diff OK :D
= Test 5 ===================================================
$> ./dm54bez10wfhm2d3lfnrqqlt "0" "2"
$> diff -U 3 user_output_test5 test5.output | cat -e
Diff OK :D
= Test 6 ===================================================
$> ./qnbf8b2uu4bbhzo8jqga88zt "--223" "10"
$> diff -U 3 user_output_test6 test6.output | cat -e
Diff OK :D
= Test 7 ===================================================
$> ./23zj3n7qo53sewdx7fr7o869 "44015a9b2" "12"
$> diff -U 3 user_output_test7 test7.output | cat -e
Diff OK :D
= Test 8 ===================================================
$> ./ksrqfzieedpo471qymywyv6b "110111210212202100" "3"
$> diff -U 3 user_output_test8 test8.output | cat -e
Diff OK :D
= Test 9 ===================================================
$> ./curie27wz7fsxwzid20a4v2m "3452f040" "16"
$> diff -U 3 user_output_test9 test9.output | cat -e
Diff OK :D
= Test 10 ==================================================
$> ./3vsoam5zd1iz3aipc8o2s1in "402752462" "11"
$> diff -U 3 user_output_test10 test10.output | cat -e
Diff OK :D
= Test 11 ==================================================
$> ./o1v1f4i983fe5w2i64wz6ex1 "-d781D15" "14"
$> diff -U 3 user_output_test11 test11.output | cat -e
Diff OK :D
= Test 12 ==================================================
$> ./buj4xn6gyiytbf7l45d3yl5t "1323212134120" "5"
$> diff -U 3 user_output_test12 test12.output | cat -e
Diff OK :D
= Test 13 ==================================================
$> ./7qvw4yknbyq5qaz6szhswh75 "13455450051" "8"
$> diff -U 3 user_output_test13 test13.output | cat -e
Diff OK :D
= Test 14 ==================================================
$> ./tfc64awbj03wp8vf5lsaunrz "36a7d665" "16"
$> diff -U 3 user_output_test14 test14.output | cat -e
Diff OK :D
= Test 15 ==================================================
$> ./kvsw3axj0yqdgz0lec46jo4n "315005223021" "6"
$> diff -U 3 user_output_test15 test15.output | cat -e
Diff OK :D
= Test 16 ==================================================
$> ./a4dcea2ri51ali053ra6tg6l "1001101101101010100010101111110" "2"
$> diff -U 3 user_output_test16 test16.output | cat -e
Diff OK :D
= Test 17 ==================================================
$> ./cu6xbkwgvdiurs3ui39xhota "10221022000101112122" "3"
$> diff -U 3 user_output_test17 test17.output | cat -e
Diff OK :D
= Test 18 ==================================================
$> ./zhyi5glu9mtzghw67f6msqp3 "503532253311" "6"
$> diff -U 3 user_output_test18 test18.output | cat -e
Diff OK :D
= Test 19 ==================================================
$> ./9otezpzuk1wddsw793geby4k "A9845867" "11"
$> diff -U 3 user_output_test19 test19.output | cat -e
Diff OK :D
= Test 20 ==================================================
$> ./ul7rugl3iu33inxcmp02ddnm "20A13024c" "13"
$> diff -U 3 user_output_test20 test20.output | cat -e
Diff OK :D
Grade: 1
= Final grade: 1 ===============================================================