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