xref: /libCEED/tests/t111-vector.c (revision 50c301a53d2cec48a2aa861bf6f38393f4831c2f)
1 /// @file
2 /// Test CeedVectorGetArray state counter
3 /// \test Test CeedVectorGetArray state counter
4 #include <ceed.h>
5 
6 int main(int argc, char **argv) {
7   Ceed ceed;
8   CeedVector x;
9   CeedInt n;
10   CeedScalar *a, b[10];
11 
12   CeedInit(argv[1], &ceed);
13 
14   n = 10;
15   CeedVectorCreate(ceed, n, &x);
16   CeedVectorSetValue(x, 0.0);
17 
18   // Two write accesses should generate an error
19   CeedVectorGetArray(x, CEED_MEM_HOST, &a);
20   CeedVectorSetArray(x, CEED_MEM_HOST, CEED_COPY_VALUES, b);
21 
22   // LCOV_EXCL_START
23   CeedVectorRestoreArray(x, &a);
24 
25   CeedVectorDestroy(&x);
26   CeedDestroy(&ceed);
27   return 0;
28   // LCOV_EXCL_STOP
29 }
30