Verified Commit c1b233fa authored by Ramon Nou's avatar Ramon Nou Committed by Marc Vef
Browse files

syscall unlinkat test correction

parent 6a7b97e7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -399,7 +399,7 @@ syscall_coverage_exec(const syscall_coverage_options& opts) {

    // sys_unlinkat
    rv = ::syscall(SYS_unlinkat, AT_FDCWD, opts.pathname.c_str(), 0);
    if(errno != ENOTSUP) {
    if(rv < 0) {
        output("sys_unlinkat", rv, opts);
        return;
    }