1 /// @file 2 /// Test creation error message with only 1 matching character 3 /// \test Test creation error message with only 1 matching character 4 5 //TESTARGS(only="cpu") {ceed_resource} 6 #include <ceed.h> 7 main(int argc,char ** argv)8int main(int argc, char **argv) { 9 Ceed ceed; 10 11 argv[1][1] = 'd'; 12 13 CeedInit(argv[1], &ceed); 14 // LCOV_EXCL_START 15 CeedDestroy(&ceed); 16 return 0; 17 // LCOV_EXCL_STOP 18 } 19