1 /*
2 Run with -google_refresh_token XXX to allow access to your Google Drive or else it will prompt you to enter log in information for Google Drive.
3 */
4
5 #include <petscsys.h>
6
main(int argc,char ** argv)7 int main(int argc, char **argv)
8 {
9 char access_token[512];
10
11 PetscFunctionBeginUser;
12 PetscCall(PetscInitialize(&argc, &argv, NULL, NULL));
13 PetscCall(PetscGoogleDriveRefresh(PETSC_COMM_WORLD, NULL, access_token, sizeof(access_token)));
14 PetscCall(PetscGoogleDriveUpload(PETSC_COMM_WORLD, access_token, "googledriveupload.c"));
15 PetscCall(PetscFinalize());
16 return 0;
17 }
18
19 /*TEST
20
21 build:
22 requires: ssl
23
24 test:
25 TODO: determine how to run this test without making a google refresh token public
26
27 TEST*/
28