gvisor/test/syscalls/linux/rseq/test.h

42 lines
1.6 KiB
C++

// Copyright 2019 The gVisor Authors.
//
// 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.
#ifndef GVISOR_TEST_SYSCALLS_LINUX_RSEQ_TEST_H_
#define GVISOR_TEST_SYSCALLS_LINUX_RSEQ_TEST_H_
namespace gvisor {
namespace testing {
// Test cases supported by rseq binary.
constexpr char kRseqTestUnaligned[] = "unaligned";
constexpr char kRseqTestRegister[] = "register";
constexpr char kRseqTestDoubleRegister[] = "double-register";
constexpr char kRseqTestRegisterUnregister[] = "register-unregister";
constexpr char kRseqTestUnregisterDifferentPtr[] = "unregister-different-ptr";
constexpr char kRseqTestUnregisterDifferentSignature[] =
"unregister-different-signature";
constexpr char kRseqTestCPU[] = "cpu";
constexpr char kRseqTestAbort[] = "abort";
constexpr char kRseqTestAbortBefore[] = "abort-before";
constexpr char kRseqTestAbortSignature[] = "abort-signature";
constexpr char kRseqTestAbortPreCommit[] = "abort-precommit";
constexpr char kRseqTestAbortClearsCS[] = "abort-clears-cs";
constexpr char kRseqTestInvalidAbortClearsCS[] = "invalid-abort-clears-cs";
} // namespace testing
} // namespace gvisor
#endif // GVISOR_TEST_SYSCALLS_LINUX_RSEQ_TEST_H_