2014-09-03 18:24:29 -04:00
|
|
|
// Copyright 2014 The Crashpad Authors. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
#include "util/test/multiprocess_exec.h"
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "base/basictypes.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
#include "util/file/fd_io.h"
|
|
|
|
#include "util/test/executable_path.h"
|
|
|
|
|
2014-10-07 17:28:50 -04:00
|
|
|
namespace crashpad {
|
|
|
|
namespace test {
|
2014-09-03 18:24:29 -04:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
class TestMultiprocessExec final : public MultiprocessExec {
|
|
|
|
public:
|
|
|
|
TestMultiprocessExec() : MultiprocessExec() {}
|
|
|
|
|
|
|
|
~TestMultiprocessExec() {}
|
|
|
|
|
|
|
|
private:
|
2014-10-14 11:11:57 -04:00
|
|
|
void MultiprocessParent() override {
|
2014-09-03 18:24:29 -04:00
|
|
|
char c = 'z';
|
2014-09-18 15:03:49 -04:00
|
|
|
CheckedWriteFD(WritePipeFD(), &c, 1);
|
2014-09-03 18:24:29 -04:00
|
|
|
|
2014-09-18 15:03:49 -04:00
|
|
|
CheckedReadFD(ReadPipeFD(), &c, 1);
|
2014-09-03 18:24:29 -04:00
|
|
|
EXPECT_EQ('Z', c);
|
|
|
|
}
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(TestMultiprocessExec);
|
|
|
|
};
|
|
|
|
|
|
|
|
TEST(MultiprocessExec, MultiprocessExec) {
|
|
|
|
TestMultiprocessExec multiprocess_exec;
|
|
|
|
base::FilePath test_executable = ExecutablePath();
|
|
|
|
std::string child_test_executable =
|
|
|
|
test_executable.value() + "_multiprocess_exec_test_child";
|
2014-10-14 11:10:45 -04:00
|
|
|
multiprocess_exec.SetChildCommand(child_test_executable, nullptr);
|
2014-09-03 18:24:29 -04:00
|
|
|
multiprocess_exec.Run();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
2014-10-07 17:28:50 -04:00
|
|
|
} // namespace test
|
|
|
|
} // namespace crashpad
|