Test cases going in loop #LE5 (Quoting - Backslash within single quotes)

I’m stuck on Stage #GY5.
I am running the tests via codecrafters test but it just keeps going in loop, it doesn’t say if i passed or failed the stage.

Here are my logs:

Initiating test run...

⏳ Turbo test runners busy. You are in queue.

Upgrade to skip the wait: https://codecrafters.io/turbo

Running tests on your code. Logs should appear shortly...

[compile] -- Configuring done (0.0s)
[compile] -- Generating done (0.0s)
[compile] -- Build files have been written to: /app/build
[compile] [ 20%] Building CXX object CMakeFiles/shell.dir/src/helper.cpp.o
[compile] [ 40%] Building CXX object CMakeFiles/shell.dir/src/main.cpp.o
[compile] [ 60%] Building CXX object CMakeFiles/shell.dir/src/parser.cpp.o
[compile] [ 80%] Building CXX object CMakeFiles/shell.dir/src/trie.cpp.o
[compile] [100%] Linking CXX executable shell
[compile] [100%] Built target shell
[compile] Moved ./.codecrafters/run.sh → ./your_program.sh
[compile] Compilation successful.

[tester::#GY5] Running tests for Stage #GY5 (Autocompletion - Executable completion)
[tester::#GY5] [setup] export PATH=/tmp/bee:$PATH
[tester::#GY5] [setup] Available executables:
[tester::#GY5] [setup] - custom_exe_2222
[tester::#GY5] Running ./your_program.sh
[tester::#GY5] ✓ Received prompt ($ )
[tester::#GY5] Typed "custom"
[tester::#GY5] ✓ Prompt line matches "$ custom"
[tester::#GY5] Pressed "<TAB>" (expecting autocomplete to "custom_exe_2222")
[tester::#GY5] ✓ Prompt line matches "custom_exe_2222"
[your-program] $ custom_exe_2222 
[tester::#GY5] Test passed.

[tester::#QM8] Running tests for Stage #QM8 (Autocompletion - Missing completions)
[tester::#QM8] Running ./your_program.sh
[tester::#QM8] ✓ Received prompt ($ )
[tester::#QM8] Typed "xyz"
[tester::#QM8] ✓ Prompt line matches "$ xyz"
[tester::#QM8] Pressed "<TAB>" (expecting autocomplete to "xyz")
[tester::#QM8] ✓ Prompt line matches "xyz"
[tester::#QM8] ✓ Received bell
[your-program] $ xyz
[tester::#QM8] Test passed.

[tester::#GM9] Running tests for Stage #GM9 (Autocompletion - Completion with arguments)
[tester::#GM9] Running ./your_program.sh
[tester::#GM9] ✓ Received prompt ($ )
[tester::#GM9] Typed "ech"
[tester::#GM9] ✓ Prompt line matches "$ ech"
[tester::#GM9] Pressed "<TAB>" (expecting autocomplete to "echo")
[tester::#GM9] ✓ Prompt line matches "echo"
[tester::#GM9] Typed "hello"
[tester::#GM9] Pressed "<ENTER>"
[your-program] $ echo hello
[your-program] hello
[tester::#GM9] ✓ Received "hello"
[your-program] $ 
[tester::#GM9] Tearing down shell
[tester::#GM9] Running ./your_program.sh
[tester::#GM9] ✓ Received prompt ($ )
[tester::#GM9] Typed "ech"
[tester::#GM9] ✓ Prompt line matches "$ ech"
[tester::#GM9] Pressed "<TAB>" (expecting autocomplete to "echo")
[tester::#GM9] ✓ Prompt line matches "echo"
[tester::#GM9] Typed "foo bar"
[tester::#GM9] Pressed "<ENTER>"
[your-program] $ echo foo bar
[your-program] foo bar
[tester::#GM9] ✓ Received "foo bar"
[your-program] $ 
[tester::#GM9] Tearing down shell
[tester::#GM9] Test passed.

[tester::#QP2] Running tests for Stage #QP2 (Autocompletion - Builtin completion)
[tester::#QP2] Running ./your_program.sh
[tester::#QP2] ✓ Received prompt ($ )
[tester::#QP2] Typed "ech"
[tester::#QP2] ✓ Prompt line matches "$ ech"
[tester::#QP2] Pressed "<TAB>" (expecting autocomplete to "echo")
[tester::#QP2] ✓ Prompt line matches "echo"
[your-program] $ echo 
[tester::#QP2] Tearing down shell
[tester::#QP2] Running ./your_program.sh
[tester::#QP2] ✓ Received prompt ($ )
[tester::#QP2] Typed "exi"
[tester::#QP2] ✓ Prompt line matches "$ exi"
[tester::#QP2] Pressed "<TAB>" (expecting autocomplete to "exit")
[tester::#QP2] ✓ Prompt line matches "exit"
[your-program] $ exit 
[tester::#QP2] Tearing down shell
[tester::#QP2] Test passed.

[tester::#UN3] Running tests for Stage #UN3 (Redirection - Append stderr)
[tester::#UN3] [setup] export PATH=/tmp/raspberry/mango/orange:$PATH
[tester::#UN3] Running ./your_program.sh
[your-program] $ ls -1 nonexistent >> /tmp/bee/bee.md
[your-program] ls: nonexistent: No such file or directory
[tester::#UN3] ✓ Received error message
[tester::#UN3] ✓ File: /tmp/bee/bee.md is empty
[your-program] $ ls -1 nonexistent 2>> /tmp/bee/dog.md
[your-program] $ cat /tmp/bee/dog.md
[your-program] ls: nonexistent: No such file or directory
[tester::#UN3] ✓ Received redirected file content
[your-program] $ echo "Alice says Error" 2>> /tmp/bee/pig.md
[your-program] Alice says Error
[tester::#UN3] ✓ Received redirected file content
[your-program] $ cat nonexistent 2>> /tmp/bee/pig.md
[your-program] $ ls -1 nonexistent 2>> /tmp/bee/pig.md
[your-program] $ cat /tmp/bee/pig.md
[your-program] cat: nonexistent: No such file or directory
[your-program] ls: nonexistent: No such file or directory
[tester::#UN3] ✓ Received redirected file content
[your-program] $ 
[tester::#UN3] Test passed.

[tester::#EL9] Running tests for Stage #EL9 (Redirection - Append stdout)
[tester::#EL9] [setup] export PATH=/tmp/grape/banana/orange:$PATH
[tester::#EL9] Running ./your_program.sh
[tester::#EL9] [setup] echo "blueberry" > "/tmp/fox/blueberry"
[tester::#EL9] [setup] echo "pineapple" > "/tmp/fox/pineapple"
[tester::#EL9] [setup] echo "strawberry" > "/tmp/fox/strawberry"
[your-program] $ ls -1 /tmp/fox >> /tmp/cow/bee.md
[your-program] $ cat /tmp/cow/bee.md
[your-program] blueberry
[your-program] pineapple
[your-program] strawberry
[tester::#EL9] ✓ Received redirected file content
[your-program] $ echo 'Hello James' 1>> /tmp/cow/pig.md
[your-program] $ echo 'Hello David' 1>> /tmp/cow/pig.md
[your-program] $ cat /tmp/cow/pig.md
[your-program] Hello James
[your-program] Hello David
[tester::#EL9] ✓ Received redirected file content
[your-program] $ echo "List of files: " > /tmp/cow/rat.md
[your-program] $ ls -1 /tmp/fox >> /tmp/cow/rat.md
[your-program] $ cat /tmp/cow/rat.md
[your-program] List of files:
[your-program] blueberry
[your-program] pineapple
[your-program] strawberry
[tester::#EL9] ✓ Received redirected file content
[your-program] $ 
[tester::#EL9] Test passed.

[tester::#VZ4] Running tests for Stage #VZ4 (Redirection - Redirect stderr)
[tester::#VZ4] [setup] export PATH=/tmp/raspberry/mango/strawberry:$PATH
[tester::#VZ4] Running ./your_program.sh
[tester::#VZ4] [setup] echo "orange" > "/tmp/ant/orange"
[your-program] $ ls -1 nonexistent 2> /tmp/dog/bee.md
[your-program] $ cat /tmp/dog/bee.md
[your-program] ls: nonexistent: No such file or directory
[tester::#VZ4] ✓ Received redirected error message
[your-program] $ echo 'Maria file cannot be found' 2> /tmp/dog/dog.md
[your-program] Maria file cannot be found
[tester::#VZ4] ✓ Received expected response
[tester::#VZ4] ✓ File: /tmp/dog/dog.md is empty
[your-program] $ cat /tmp/ant/orange nonexistent 2> /tmp/dog/owl.md
[your-program] orange
[tester::#VZ4] ✓ Received file content
[your-program] $ cat /tmp/dog/owl.md
[your-program] cat: nonexistent: No such file or directory
[tester::#VZ4] ✓ Received redirected error message
[your-program] $ 
[tester::#VZ4] Test passed.

[tester::#JV1] Running tests for Stage #JV1 (Redirection - Redirect stdout)
[tester::#JV1] [setup] export PATH=/tmp/orange/mango/pineapple:$PATH
[tester::#JV1] Running ./your_program.sh
[tester::#JV1] [setup] echo "apple" > "/tmp/cow/apple"
[tester::#JV1] [setup] echo "orange" > "/tmp/cow/orange"
[tester::#JV1] [setup] echo "pineapple" > "/tmp/cow/pineapple"
[your-program] $ ls -1 /tmp/cow > /tmp/ant/dog.md
[your-program] $ cat /tmp/ant/dog.md
[your-program] apple
[your-program] orange
[your-program] pineapple
[tester::#JV1] ✓ Received redirected file content
[your-program] $ echo 'Hello James' 1> /tmp/ant/fox.md
[your-program] $ cat /tmp/ant/fox.md
[your-program] Hello James
[tester::#JV1] ✓ Received redirected file content
[your-program] $ cat /tmp/cow/orange nonexistent 1> /tmp/ant/owl.md
[your-program] cat: nonexistent: No such file or directory
[tester::#JV1] ✓ Received error message
[your-program] $ cat /tmp/ant/owl.md
[your-program] orange
[tester::#JV1] ✓ Received redirected file content
[your-program] $ 
[tester::#JV1] Test passed.

[tester::#QJ0] Running tests for Stage #QJ0 (Quoting - Executing a quoted executable)
[tester::#QJ0] [setup] export PATH=/tmp/rat:$PATH
[tester::#QJ0] [setup] Available executables:
[tester::#QJ0] [setup] - 'exe  with  space'
[tester::#QJ0] [setup] - 'exe with "quotes"'
[tester::#QJ0] [setup] - "exe with \'single quotes\'"
[tester::#QJ0] [setup] - 'exe with \n newline'
[tester::#QJ0] Running ./your_program.sh
[tester::#QJ0] [setup] echo "blueberry mango." > "/tmp/rat/f1"
[tester::#QJ0] [setup] echo "pear grape." > "/tmp/rat/f2"
[tester::#QJ0] [setup] echo "blueberry pear." > "/tmp/rat/f3"
[tester::#QJ0] [setup] echo "blueberry apple." > "/tmp/rat/f4"
[your-program] $ 'exe  with  space' /tmp/rat/f1
[your-program] blueberry mango.
[tester::#QJ0] ✓ Received expected response
[your-program] $ 'exe with "quotes"' /tmp/rat/f2
[your-program] pear grape.
[tester::#QJ0] ✓ Received expected response
[your-program] $ "exe with \'single quotes\'" /tmp/rat/f3
[your-program] blueberry pear.
[tester::#QJ0] ✓ Received expected response
[your-program] $ 'exe with \n newline' /tmp/rat/f4
[your-program] blueberry apple.
[tester::#QJ0] ✓ Received expected response
[your-program] $ 
[tester::#QJ0] Test passed.

[tester::#GU3] Running tests for Stage #GU3 (Quoting - Backslash within double quotes)
[tester::#GU3] [setup] export PATH=/tmp/banana/orange/orange:$PATH
[tester::#GU3] [setup] echo -n "strawberry orange." > "/tmp/owl/\"f 25\""
[tester::#GU3] [setup] echo -n "pineapple banana." > "/tmp/owl/\"f\\99\""
[tester::#GU3] [setup] echo "orange pineapple." > "/tmp/owl/f78"
[tester::#GU3] Running ./your_program.sh
[your-program] $ echo "example'shell'\\'hello"
[your-program] example'shell'\'hello
[tester::#GU3] ✓ Received expected response
[your-program] $ echo "example\"insidequotes"shell\"
[your-program] example"insidequotesshell"
[tester::#GU3] ✓ Received expected response
[your-program] $ echo "mixed\"quote'script'\\"
[your-program] mixed"quote'script'\
[tester::#GU3] ✓ Received expected response
[your-program] $ cat "/tmp/owl/\"f 25\"" "/tmp/owl/\"f\\99\"" "/tmp/owl/f78"
[your-program] strawberry orange.pineapple banana.orange pineapple.
[tester::#GU3] ✓ Received expected response
[your-program] $ 
[tester::#GU3] Test passed.

[tester::#LE5] Running tests for Stage #LE5 (Quoting - Backslash within single quotes)
[tester::#LE5] [setup] export PATH=/tmp/grape/raspberry/pineapple:$PATH
[tester::#LE5] Running ./your_program.sh
[compile] -- Configuring done (0.0s)
[compile] -- Generating done (0.0s)
[compile] -- Build files have been written to: /app/build
[compile] [ 20%] Building CXX object CMakeFiles/shell.dir/src/helper.cpp.o
[compile] [ 40%] Building CXX object CMakeFiles/shell.dir/src/main.cpp.o
[compile] [ 60%] Building CXX object CMakeFiles/shell.dir/src/parser.cpp.o
[compile] [ 80%] Building CXX object CMakeFiles/shell.dir/src/trie.cpp.o
[compile] [100%] Linking CXX executable shell
[compile] [100%] Built target shell
[compile] Moved ./.codecrafters/run.sh → ./your_program.sh
[compile] Compilation successful.

[tester::#GY5] Running tests for Stage #GY5 (Autocompletion - Executable completion)
[tester::#GY5] [setup] export PATH=/tmp/cow:$PATH
[tester::#GY5] [setup] Available executables:
[tester::#GY5] [setup] - custom_exe_2116
[tester::#GY5] Running ./your_program.sh
[tester::#GY5] ✓ Received prompt ($ )
[tester::#GY5] Typed "custom"
[tester::#GY5] ✓ Prompt line matches "$ custom"
[tester::#GY5] Pressed "<TAB>" (expecting autocomplete to "custom_exe_2116")
[tester::#GY5] ✓ Prompt line matches "custom_exe_2116"
[your-program] $ custom_exe_2116 
[tester::#GY5] Test passed.

[tester::#QM8] Running tests for Stage #QM8 (Autocompletion - Missing completions)
[tester::#QM8] Running ./your_program.sh
[tester::#QM8] ✓ Received prompt ($ )
[tester::#QM8] Typed "xyz"
[tester::#QM8] ✓ Prompt line matches "$ xyz"
[tester::#QM8] Pressed "<TAB>" (expecting autocomplete to "xyz")
[tester::#QM8] ✓ Prompt line matches "xyz"
[tester::#QM8] ✓ Received bell
[your-program] $ xyz
[tester::#QM8] Test passed.

[tester::#GM9] Running tests for Stage #GM9 (Autocompletion - Completion with arguments)
[tester::#GM9] Running ./your_program.sh
[tester::#GM9] ✓ Received prompt ($ )
[tester::#GM9] Typed "ech"
[tester::#GM9] ✓ Prompt line matches "$ ech"
[tester::#GM9] Pressed "<TAB>" (expecting autocomplete to "echo")
[tester::#GM9] ✓ Prompt line matches "echo"
[tester::#GM9] Typed "hello"
[tester::#GM9] Pressed "<ENTER>"
[your-program] $ echo hello
[your-program] hello
[tester::#GM9] ✓ Received "hello"
[your-program] $ 
[tester::#GM9] Tearing down shell
[tester::#GM9] Running ./your_program.sh
[tester::#GM9] ✓ Received prompt ($ )
[tester::#GM9] Typed "ech"
[tester::#GM9] ✓ Prompt line matches "$ ech"
[tester::#GM9] Pressed "<TAB>" (expecting autocomplete to "echo")
[tester::#GM9] ✓ Prompt line matches "echo"
[tester::#GM9] Typed "foo bar"
[tester::#GM9] Pressed "<ENTER>"
[your-program] $ echo foo bar
[your-program] foo bar
[tester::#GM9] ✓ Received "foo bar"
[your-program] $ 
[tester::#GM9] Tearing down shell
[tester::#GM9] Test passed.

[tester::#QP2] Running tests for Stage #QP2 (Autocompletion - Builtin completion)
[tester::#QP2] Running ./your_program.sh
[tester::#QP2] ✓ Received prompt ($ )
[tester::#QP2] Typed "ech"
[tester::#QP2] ✓ Prompt line matches "$ ech"
[tester::#QP2] Pressed "<TAB>" (expecting autocomplete to "echo")
[tester::#QP2] ✓ Prompt line matches "echo"
[your-program] $ echo 
[tester::#QP2] Tearing down shell
[tester::#QP2] Running ./your_program.sh
[tester::#QP2] ✓ Received prompt ($ )
[tester::#QP2] Typed "exi"
[tester::#QP2] ✓ Prompt line matches "$ exi"
[tester::#QP2] Pressed "<TAB>" (expecting autocomplete to "exit")
[tester::#QP2] ✓ Prompt line matches "exit"
[your-program] $ exit 
[tester::#QP2] Tearing down shell
[tester::#QP2] Test passed.

[tester::#UN3] Running tests for Stage #UN3 (Redirection - Append stderr)
[tester::#UN3] [setup] export PATH=/tmp/orange/orange/orange:$PATH
[tester::#UN3] Running ./your_program.sh
[your-program] $ ls -1 nonexistent >> /tmp/ant/bee.md
[your-program] ls: nonexistent: No such file or directory
[tester::#UN3] ✓ Received error message
[tester::#UN3] ✓ File: /tmp/ant/bee.md is empty
[your-program] $ ls -1 nonexistent 2>> /tmp/ant/pig.md
[your-program] $ cat /tmp/ant/pig.md
[your-program] ls: nonexistent: No such file or directory
[tester::#UN3] ✓ Received redirected file content
[your-program] $ echo "Emily says Error" 2>> /tmp/ant/rat.md
[your-program] Emily says Error
[tester::#UN3] ✓ Received redirected file content
[your-program] $ cat nonexistent 2>> /tmp/ant/rat.md
[your-program] $ ls -1 nonexistent 2>> /tmp/ant/rat.md
[your-program] $ cat /tmp/ant/rat.md
[your-program] cat: nonexistent: No such file or directory
[your-program] ls: nonexistent: No such file or directory
[tester::#UN3] ✓ Received redirected file content
[your-program] $ 
[tester::#UN3] Test passed.

[tester::#EL9] Running tests for Stage #EL9 (Redirection - Append stdout)
[tester::#EL9] [setup] export PATH=/tmp/strawberry/grape/apple:$PATH
[tester::#EL9] Running ./your_program.sh
[tester::#EL9] [setup] echo "apple" > "/tmp/owl/apple"
[tester::#EL9] [setup] echo "blueberry" > "/tmp/owl/blueberry"
[tester::#EL9] [setup] echo "mango" > "/tmp/owl/mango"
[your-program] $ ls -1 /tmp/owl >> /tmp/fox/bee.md
[your-program] $ cat /tmp/fox/bee.md
[your-program] apple
[your-program] blueberry
[your-program] mango
[tester::#EL9] ✓ Received redirected file content
[your-program] $ echo 'Hello David' 1>> /tmp/fox/dog.md
[your-program] $ echo 'Hello Maria' 1>> /tmp/fox/dog.md
[your-program] $ cat /tmp/fox/dog.md
[your-program] Hello David
[your-program] Hello Maria
[tester::#EL9] ✓ Received redirected file content
[your-program] $ echo "List of files: " > /tmp/fox/fox.md
[your-program] $ ls -1 /tmp/owl >> /tmp/fox/fox.md
[your-program] $ cat /tmp/fox/fox.md
[your-program] List of files:
[your-program] apple
[your-program] blueberry
[your-program] mango
[tester::#EL9] ✓ Received redirected file content
[your-program] $ 
[tester::#EL9] Test passed.

[tester::#VZ4] Running tests for Stage #VZ4 (Redirection - Redirect stderr)
[tester::#VZ4] [setup] export PATH=/tmp/pineapple/grape/apple:$PATH
[tester::#VZ4] Running ./your_program.sh
[tester::#VZ4] [setup] echo "blueberry" > "/tmp/owl/blueberry"
[your-program] $ ls -1 nonexistent 2> /tmp/pig/bee.md
[your-program] $ cat /tmp/pig/bee.md
[your-program] ls: nonexistent: No such file or directory
[tester::#VZ4] ✓ Received redirected error message
[your-program] $ echo 'James file cannot be found' 2> /tmp/pig/fox.md
[your-program] James file cannot be found
[tester::#VZ4] ✓ Received expected response
[tester::#VZ4] ✓ File: /tmp/pig/fox.md is empty
[your-program] $ cat /tmp/owl/blueberry nonexistent 2> /tmp/pig/rat.md
[your-program] blueberry
[tester::#VZ4] ✓ Received file content
[your-program] $ cat /tmp/pig/rat.md
[your-program] cat: nonexistent: No such file or directory
[tester::#VZ4] ✓ Received redirected error message
[your-program] $ 
[tester::#VZ4] Test passed.

[tester::#JV1] Running tests for Stage #JV1 (Redirection - Redirect stdout)
[tester::#JV1] [setup] export PATH=/tmp/banana/strawberry/strawberry:$PATH
[tester::#JV1] Running ./your_program.sh
[tester::#JV1] [setup] echo "blueberry" > "/tmp/fox/blueberry"
[tester::#JV1] [setup] echo "grape" > "/tmp/fox/grape"
[tester::#JV1] [setup] echo "pineapple" > "/tmp/fox/pineapple"
[your-program] $ ls -1 /tmp/fox > /tmp/bee/ant.md
[your-program] $ cat /tmp/bee/ant.md
[your-program] blueberry
[your-program] grape
[your-program] pineapple
[tester::#JV1] ✓ Received redirected file content
[your-program] $ echo 'Hello Maria' 1> /tmp/bee/dog.md
[your-program] $ cat /tmp/bee/dog.md
[your-program] Hello Maria
[tester::#JV1] ✓ Received redirected file content
[your-program] $ cat /tmp/fox/grape nonexistent 1> /tmp/bee/fox.md
[your-program] cat: nonexistent: No such file or directory
[tester::#JV1] ✓ Received error message
[your-program] $ cat /tmp/bee/fox.md
[your-program] grape
[tester::#JV1] ✓ Received redirected file content
[your-program] $ 
[tester::#JV1] Test passed.

[tester::#QJ0] Running tests for Stage #QJ0 (Quoting - Executing a quoted executable)
[tester::#QJ0] [setup] export PATH=/tmp/pig:$PATH
[tester::#QJ0] [setup] Available executables:
[tester::#QJ0] [setup] - 'exe  with  space'
[tester::#QJ0] [setup] - 'exe with "quotes"'
[tester::#QJ0] [setup] - "exe with \'single quotes\'"
[tester::#QJ0] [setup] - 'exe with \n newline'
[tester::#QJ0] Running ./your_program.sh
[tester::#QJ0] [setup] echo "apple orange." > "/tmp/pig/f1"
[tester::#QJ0] [setup] echo "mango apple." > "/tmp/pig/f2"
[tester::#QJ0] [setup] echo "apple banana." > "/tmp/pig/f3"
[tester::#QJ0] [setup] echo "banana orange." > "/tmp/pig/f4"
[your-program] $ 'exe  with  space' /tmp/pig/f1
[your-program] apple orange.
[tester::#QJ0] ✓ Received expected response
[your-program] $ 'exe with "quotes"' /tmp/pig/f2
[your-program] mango apple.
[tester::#QJ0] ✓ Received expected response
[your-program] $ "exe with \'single quotes\'" /tmp/pig/f3
[your-program] apple banana.
[tester::#QJ0] ✓ Received expected response
[your-program] $ 'exe with \n newline' /tmp/pig/f4
[your-program] banana orange.
[tester::#QJ0] ✓ Received expected response
[your-program] $ 
[tester::#QJ0] Test passed.

[tester::#GU3] Running tests for Stage #GU3 (Quoting - Backslash within double quotes)
[tester::#GU3] [setup] export PATH=/tmp/grape/grape/pineapple:$PATH
[tester::#GU3] [setup] echo -n "strawberry apple." > "/tmp/cow/\"f 63\""
[tester::#GU3] [setup] echo -n "banana pear." > "/tmp/cow/\"f\\24\""
[tester::#GU3] [setup] echo "banana apple." > "/tmp/cow/f45"
[tester::#GU3] Running ./your_program.sh
[your-program] $ echo "shell'example'\\'hello"
[your-program] shell'example'\'hello
[tester::#GU3] ✓ Received expected response
[your-program] $ echo "shell\"insidequotes"example\"
[your-program] shell"insidequotesexample"
[tester::#GU3] ✓ Received expected response
[your-program] $ echo "mixed\"quote'world'\\"
[your-program] mixed"quote'world'\
[tester::#GU3] ✓ Received expected response
[your-program] $ cat "/tmp/cow/\"f 63\"" "/tmp/cow/\"f\\24\"" "/tmp/cow/f45"
[your-program] strawberry apple.banana pear.banana apple.
[tester::#GU3] ✓ Received expected response
[your-program] $ 
[tester::#GU3] Test passed.

[tester::#LE5] Running tests for Stage #LE5 (Quoting - Backslash within single quotes)
[tester::#LE5] [setup] export PATH=/tmp/pineapple/grape/pear:$PATH
[tester::#LE5] Running ./your_program.sh
Looks like we failed to execute tests on time.

Please try again? Let us know at hello@codecrafters.io if this keeps happening.


We couldn't fetch the results of your submission. Please try again?
Let us know at hello@codecrafters.io if this error persists.

same situation but on another stage. did you find how to fix this?

Hey @Devesh42, looks like your recent submissions were running into an out-of-memory (OOM) issue on our test runner, which is why the last few tests are timing out rather than completing.

We’re working on improving the tester so this gets reported more accurately. In the meantime, could you check whether your program is holding more data in memory than needed (for example buffering whole files, storing large arrays, or looping without freeing resources)?

Hey @lowkkid, could you confirm if you’re still running into the issue?