Changeset 2e9b59b for tests/meta/dumpable.cfa
- Timestamp:
- Apr 19, 2022, 3:00:04 PM (4 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation, qualifiedEnum
- Children:
- 5b84a321
- Parents:
- ba897d21 (diff), bb7c77d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
tests/meta/dumpable.cfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/meta/dumpable.cfa
rba897d21 r2e9b59b 14 14 // 15 15 16 #include <errno.h> 16 17 #include <limits.h> 17 #include < errno.h>18 #include <string.h> 18 19 19 20 #include <fstream.hfa> 20 21 21 22 extern "C" { 23 #include <fcntl.h> 24 #include <unistd.h> 22 25 #include <sys/prctl.h> 23 26 #include <sys/resource.h> 24 27 #include <sys/statvfs.h> 25 #include <unistd.h> 28 #include <sys/stat.h> 29 #include <sys/types.h> 26 30 } 27 31 … … 102 106 } 103 107 108 void check_core_pattern() { 109 int ret; 110 int cp = open("/proc/sys/kernel/core_pattern", 0, O_RDONLY); 111 if(cp < 0) { 112 perror("open(/proc/sys/kernel/core_pattern, O_RDONLY) error"); 113 return; 114 } 115 116 try { 117 const char * expected = "core\n"; 118 const int sz = sizeof("core\n"); 119 char buf[512]; 120 ret = read(cp, buf, 512); 121 if(ret < 0) { 122 perror("first core pattern read error"); 123 return; 124 } 125 ret = strncmp(expected, buf, sz - 1); 126 if(ret != 0) { 127 serr | "/proc/sys/kernel/core_pattern does not contain 'core', was:" | nl | nl | buf | nl 128 | "Test script expect cores files to be dumped with name 'core' in current working directory." | nl 129 | "Apport is not supported, it should be deactivated in /etc/default/apport for the test suite to work with core dumps."; 130 131 return; 132 } 133 } 134 finally { 135 ret = close(cp); 136 if(ret < 0) perror("close(/proc/sys/kernel/core_pattern) error"); 137 } 138 139 } 140 104 141 int main() { 105 142 check_ulimit(); … … 113 150 check_dumpflag(); 114 151 152 check_core_pattern(); 153 115 154 sout | "Done"; 116 155 }
Note:
See TracChangeset
for help on using the changeset viewer.