#!/usr/bin/env node
const { exec } = require("child_process");
const path = require("path");
const binp = path.join(__dirname, "target", "release", "test-rm");
exec(binp, (error, stdout, stderr) => {
stdout && console.log(stdout);
stderr && console.log(stderr);
if (error !== null) {
console.log(`exec error: ${error}`);
}
});