C++: Add test annotation

This commit is contained in:
Jeroen Ketema
2023-12-04 17:53:08 +01:00
parent 3e2397a3d1
commit 7f1bd499ce

View File

@@ -411,5 +411,5 @@ void test7_1(const char *path1, const char *path2)
int test8(const char *path, int mode)
{
return (chmod(path, mode) == 0 ? 1 : 0);
return (chmod(path, mode) == 0 ? 1 : 0); // GOOD
}