From 397a59fc956e9d8af05960d31afd4536b62c2399 Mon Sep 17 00:00:00 2001 From: Zach Koopmans Date: Mon, 14 Jun 2021 09:49:59 -0700 Subject: [PATCH] Remove debug lines from exec.cc PiperOrigin-RevId: 379298590 --- test/syscalls/linux/exec.cc | 3 --- 1 file changed, 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));