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