summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorZach Koopmans <zkoopmans@google.com>2021-06-14 09:49:59 -0700
committergVisor bot <gvisor-bot@google.com>2021-06-14 09:52:02 -0700
commit397a59fc956e9d8af05960d31afd4536b62c2399 (patch)
treee326e42119377643e2f727c831adaf86ff9fceaf /test
parent5c9e84622305dc9fd4e9b81eeb7309b8a894f99e (diff)
Remove debug lines from exec.cc
PiperOrigin-RevId: 379298590
Diffstat (limited to 'test')
-rw-r--r--test/syscalls/linux/exec.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/syscalls/linux/exec.cc b/test/syscalls/linux/exec.cc
index 4df429ed8..a0016146a 100644
--- a/test/syscalls/linux/exec.cc
+++ b/test/syscalls/linux/exec.cc
@@ -306,9 +306,6 @@ TEST(ExecTest, InterpreterScriptNoPath) {
TempPath script = ASSERT_NO_ERRNO_AND_VALUE(
TempPath::CreateFileWith(GetAbsoluteTestTmpdir(), "#!\n\n", 0755));
- std::cerr << "path: " << script.path() << std::endl;
- std::cerr << system(absl::StrCat("cat ", script.path()).c_str()) << std::endl;
-
int execve_errno;
ASSERT_NO_ERRNO_AND_VALUE(
ForkAndExec(script.path(), {script.path()}, {}, nullptr, &execve_errno));