Files
jami-daemon/test/agent/scenarios/peer-monitor/run-scenario
Olivier Dion ce1995d172 agent: Use GOOPS
GOOPS is Guile Object Oriented Programming System.

It's easier to extend and break less the scenarios using GOOPS.  e.g., a
scenario published on Gitlab should work two weeks later.  This is not the case
right now and the goal of using GOOPS is to offer a stable API for the agent,
while keeping it flexible.

Change-Id: If6a038b6d8c371f8e74849749770f1dec8559b91
2021-12-30 11:30:29 -05:00

15 lines
258 B
Bash
Executable File

#!/bin/sh
tmp=$(mktemp --tmpdir --directory "jami-peer-monitor.XXXXXXXXXX")
export XDG_CONFIG_HOME="$tmp"
export XDG_CACHE_HOME="$tmp"
export XDG_DATA_HOME="$tmp"
export GUILE_AUTO_COMPILE=0
export JAMI_LOG_FILE="$1.log"
./scenario.scm $@
rm -rf "$tmp"