summaryrefslogtreecommitdiffstats
path: root/third_party/rust/lucet-wasi-wasmsbx/tests/guests/notdir.c
blob: fcd47a69db31bedc75e200ff424ab9b5e31646d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <assert.h>
#include <errno.h>
#include <dirent.h>

int main()
{
    DIR *dir = opendir("/sandbox/notadir");
    assert(dir == NULL);
    assert(errno == ENOTDIR);

    return 0;
}