Record Detail

Wrong Answer

prepare (1/3): 
finished

make (2/3): 
make: Entering directory '/out/build/driver'
clang -std=gnu11 -O2 -o driver driver.c
driver successfully constructed
make: Leaving directory '/out/build/driver'
make: Entering directory '/out/build/mumsh'
clang -std=gnu11 -O2 -Wall -Wextra -pedantic -Wno-unused-result -o mumsh main.c redirect.c read_command.c parse.c execute.c pipe.c internal_cmds.c
In file included from main.c:8:
./read_command.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
In file included from main.c:9:
./parse.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
In file included from main.c:10:
./execute.h:35:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
main.c:18:14: warning: variable length array folded to constant array as an extension [-Wgnu-folding-constant]
char command[MAXSIZE];
             ^~~~~~~
main.c:20:25: warning: unused parameter 'signo' [-Wunused-parameter]
void sigint_handler(int signo) {
                        ^
main.c:42:31: warning: variable length array folded to constant array as an extension [-Wgnu-folding-constant]
        char oldCommandString[MAXSIZE];
                              ^~~~~~~
6 warnings generated.
In file included from redirect.c:10:
./internal_cmds.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
redirect.c:47:15: warning: unused variable 'errorSymbol' [-Wunused-variable]
        char* errorSymbol;
              ^
2 warnings generated.
In file included from read_command.c:8:
./read_command.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
read_command.c:38:2: warning: no newline at end of file [-Wnewline-eof]
}
 ^
2 warnings generated.
In file included from parse.c:1:
./parse.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
parse.c:20:22: warning: expression which evaluates to zero treated as a null pointer constant of type 'char *' [-Wnon-literal-null-conversion]
    *parsedCommand = '\0';
                     ^~~~
parse.c:21:2: warning: no newline at end of file [-Wnewline-eof]
}
 ^
3 warnings generated.
In file included from execute.c:9:
./pipe.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
In file included from execute.c:10:
./internal_cmds.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
In file included from execute.c:11:
./read_command.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
In file included from execute.c:12:
./parse.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
In file included from execute.c:13:
./execute.h:35:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
execute.c:132:9: warning: unused variable 'tPOs' [-Wunused-variable]
    int tPOs = 0;
        ^
execute.c:68:40: warning: comparison of integers of different signs: 'int' and 'unsigned long' [-Wsign-compare]
            if (deleteQuotePos[delPos] == strlen(argument) - 1 + deletedCnt)
                ~~~~~~~~~~~~~~~~~~~~~~ ^  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
execute.c:162:9: warning: unused variable 'roundCnt' [-Wunused-variable]
    int roundCnt = 0;
        ^
execute.c:431:2: warning: no newline at end of file [-Wnewline-eof]
}
 ^
execute.c:249:9: warning: unused variable 'pos' [-Wunused-variable]
    int pos = 0;
        ^
10 warnings generated.
In file included from pipe.c:1:
./pipe.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
In file included from pipe.c:11:
./internal_cmds.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
pipe.c:75:11: warning: unused variable 'pid' [-Wunused-variable]
    pid_t pid;
          ^
3 warnings generated.
In file included from internal_cmds.c:6:
./internal_cmds.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
internal_cmds.c:20:21: warning: variable length array folded to constant array as an extension [-Wgnu-folding-constant]
        char buffer[MAXPATHLENGTH];
                    ^~~~~~~~~~~~~
internal_cmds.c:33:2: warning: no newline at end of file [-Wnewline-eof]
}
 ^
3 warnings generated.
clang -std=gnu11 -O2 -Wall -Wextra -pedantic -Wno-unused-result -fsanitize=address -fno-omit-frame-pointer -fsanitize=undefined -fsanitize=integer -o mumsh_memory_check main.c redirect.c read_command.c parse.c execute.c pipe.c internal_cmds.c
In file included from main.c:8:
./read_command.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
In file included from main.c:9:
./parse.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
In file included from main.c:10:
./execute.h:35:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
main.c:18:14: warning: variable length array folded to constant array as an extension [-Wgnu-folding-constant]
char command[MAXSIZE];
             ^~~~~~~
main.c:20:25: warning: unused parameter 'signo' [-Wunused-parameter]
void sigint_handler(int signo) {
                        ^
main.c:42:31: warning: variable length array folded to constant array as an extension [-Wgnu-folding-constant]
        char oldCommandString[MAXSIZE];
                              ^~~~~~~
6 warnings generated.
In file included from redirect.c:10:
./internal_cmds.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
redirect.c:47:15: warning: unused variable 'errorSymbol' [-Wunused-variable]
        char* errorSymbol;
              ^
2 warnings generated.
In file included from read_command.c:8:
./read_command.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
read_command.c:38:2: warning: no newline at end of file [-Wnewline-eof]
}
 ^
2 warnings generated.
In file included from parse.c:1:
./parse.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
parse.c:20:22: warning: expression which evaluates to zero treated as a null pointer constant of type 'char *' [-Wnon-literal-null-conversion]
    *parsedCommand = '\0';
                     ^~~~
parse.c:21:2: warning: no newline at end of file [-Wnewline-eof]
}
 ^
3 warnings generated.
In file included from execute.c:9:
./pipe.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
In file included from execute.c:10:
./internal_cmds.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
In file included from execute.c:11:
./read_command.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
In file included from execute.c:12:
./parse.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
In file included from execute.c:13:
./execute.h:35:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
execute.c:132:9: warning: unused variable 'tPOs' [-Wunused-variable]
    int tPOs = 0;
        ^
execute.c:68:40: warning: comparison of integers of different signs: 'int' and 'unsigned long' [-Wsign-compare]
            if (deleteQuotePos[delPos] == strlen(argument) - 1 + deletedCnt)
                ~~~~~~~~~~~~~~~~~~~~~~ ^  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
execute.c:162:9: warning: unused variable 'roundCnt' [-Wunused-variable]
    int roundCnt = 0;
        ^
execute.c:431:2: warning: no newline at end of file [-Wnewline-eof]
}
 ^
execute.c:249:9: warning: unused variable 'pos' [-Wunused-variable]
    int pos = 0;
        ^
10 warnings generated.
In file included from pipe.c:1:
./pipe.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
In file included from pipe.c:11:
./internal_cmds.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
pipe.c:75:11: warning: unused variable 'pid' [-Wunused-variable]
    pid_t pid;
          ^
3 warnings generated.
In file included from internal_cmds.c:6:
./internal_cmds.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
      ^
internal_cmds.c:20:21: warning: variable length array folded to constant array as an extension [-Wgnu-folding-constant]
        char buffer[MAXPATHLENGTH];
                    ^~~~~~~~~~~~~
internal_cmds.c:33:2: warning: no newline at end of file [-Wnewline-eof]
}
 ^
3 warnings generated.
mumsh successfully constructed
make: Leaving directory '/out/build/mumsh'
finished

clean (3/3): 
finished

all tasks finished, build successfully
# Status Time Cost Memory Cost
#1 Accepted Detail 4ms 1.531 MiB
#2 Accepted Detail 3ms 1.328 MiB
#3 Accepted Detail 4ms 1.254 MiB
#4 Accepted Detail 3ms 1.082 MiB
#5 Wrong Answer Detail 7ms 1.473 MiB
#6 Wrong Answer Detail 3ms 1.094 MiB
#7 Accepted Detail 8ms 2.895 MiB
#8 Wrong Answer Detail 7ms 1.555 MiB
#9 Wrong Answer Detail 3ms 1016.0 KiB
#10 Accepted Detail 1ms 512.0 KiB
#11 Accepted Detail 1ms 600.0 KiB
#12 Accepted Detail 10ms 1.371 MiB
#13 Accepted Detail 3ms 1.105 MiB
#14 Accepted Detail 4ms 1.266 MiB
#15 Accepted Detail 31ms 2.852 MiB
#16 Accepted Detail 12ms 2.516 MiB
#17 Accepted Detail 12ms 2.172 MiB
#18 Accepted Detail 84ms 4.434 MiB

Information

Submit By
Type
Submission
Homework
Project 1 Final Test
Language
GNU Make
Submit At
2020-10-11 19:29:37
Judged At
2020-12-11 18:56:25
Judged By
Score
140
Total Time
208ms
Peak Memory
4.434 MiB