xref: /libCEED/tests/t006-ceed.c (revision a71faab149de599cd7784196409e851b67144f0a)
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 
8 int 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