Skip to main content

Quick Test CLI Error Mapping

Error codeError NameDescriptionSolution
QTEST_COMPILER_ERRORFile compilation errorOccurs when there is an error while trying to compile a file.Verify that the compiler/programming language for the file you are trying to compile is installed.
QTEST_RUNTIME_ERRORRun time errorOccurs when any of the executed files encounters a runtime error.Fix the error in the file you are running.
QTEST_TIME_LIMIT_EXCEEDEDTime limit exceededOccurs when the generator file, checker file, or correct file exceeds the maximum defined time limit.Optimize the slow code.
QTEST_COULDNT_CREATE_FOLDERCouldn't create folderOccurs when attempting to create a folder fails, possibly due to denied permissions.Try running the application as administrator.
QTEST_COULDNT_OPEN_FILECouldn't open fileOccurs when attempting to open a file fails, possibly due to denied permissions.Try running the application as administrator.
QTEST_COULDNT_WRITE_TO_FILECouldn't write to fileOccurs when attempting to write to a file fails, possibly due to denied permissions.Try running the application as administrator.
QTEST_EXTENSION_NOT_SOPPORTED_ERRORExtension not supported errorOccurs when attempting to run a file with an extension not supported by QuickTest.-
QTEST_CONFIGURATION_FILE_ERRORConfiguration file errorOccurs when the configuration file "~/.quicktest/languages.config.json" contains errors.Modify the configuration file to correct the errors, or delete the file to use the default configurations.
QTEST_PROGRAM_NOT_INSTALLED_ERRORProgram not installed errorOccurs when the program required to execute the file is not installed on the computer where QuickTest is running.Install the required program/programming language.
QTEST_SETUP_LABEL_IS_NOT_CORRECT_ERRORSetup label is not correct errorOccurs when the entered label does not exist in the configuration file.Correct the label with an accepted label. To see the accepted labels, run the command quicktest setup config --help.