| * Copyright 2016, Cyril Bur, IBM Corp. |
| * This program is free software; you can redistribute it and/or |
| * modify it under the terms of the GNU General Public License |
| * as published by the Free Software Foundation; either version |
| * 2 of the License, or (at your option) any later version. |
| * 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"); |