6
int main(int argc, const char* argv[])
10
assert(norm(buf,256, "/usr/bin/python") == 0);
11
assert(strcmp(buf,"/usr/bin/python") == 0);
13
assert(norm(buf,256, "/usr/./bin/./python") == 0);
14
assert(strcmp(buf,"/usr/bin/python") == 0);
16
assert(norm(buf,256, "/x/../python") == 0);
17
assert(strcmp(buf,"/python") == 0);
19
assert(norm(buf,256, "/../python") != 0);