| // SPDX-License-Identifier: GPL-2.0-or-later |
| * Copyright 2016, Cyril Bur, IBM Corp. |
| * Syscalls can be performed provided the transactions are suspended. |
| * The exec() class of syscall is unique as a new process is loaded. |
| * It makes little sense for after an exec() call for the previously |
| * suspended transaction to still exist. |
| static int test_exec(void) |
| execl(path, "tm-exec", "--child", NULL); |
| perror("execl() failed"); |
| static int after_exec(void) |
| FAIL_IF(failure_is_nesting()); |
| int main(int argc, char *argv[]) |
| if (argc > 1 && strcmp(argv[1], "--child") == 0) |
| return test_harness(test_exec, "tm_exec"); |