What is the signification of "ERROR - Output error" on the CompileUnitTest ?Before, my program run but now it seems that I have a problem on compilation...
AFAIK it means that output of your program doesn't match the output of reference code. When there's compile error, you get something like this "ERROR - binary could not be built correctly".
But at the end of "make submit" there is an error:
"/bin/sh: 1: curl: not found
make: *** [submit] Error 127"
This is normal ? What thing I need to add to delete this error?
You need "curl" library in order to submit your solution to server via console.
If you use Ubuntu, type in your console "sudo apt-get install curl" for install it.