Fix to tee filter tests failing due to the default user not being found in the etc/passwd file.

This commit is contained in:
Markus Makela
2015-01-08 20:21:56 +02:00
parent c8fbe71527
commit 7987365bd4

View File

@ -283,6 +283,9 @@ char *home, buf[1024];
result += test4(); result += test4();
result += test5(); result += test5();
/* Add the default user back so other tests can use it */
admin_add_user("admin", "skysql");
exit(result); exit(result);
} }