summary refs log tree commit diff
path: root/pkgs/test/make-binary-wrapper/chdir.c
blob: ff1f91a03babddffc978ae2a8c62118f9aef2a0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// makeCWrapper /path/to/executable \
    --chdir /usr/local/bin

#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>

#define assert_success(e) do { if ((e) < 0) { perror(#e); abort(); } } while (0)

int main(int argc, char **argv) {
    assert_success(chdir("/usr/local/bin"));
    argv[0] = "/path/to/executable";
    return execv("/path/to/executable", argv);
}