#!/bin/sh

export_top_env()
{
	export suite='trinity'
	export testcase='trinity'
	export runtime=300
	export job_origin='/lkp/lkp/src/allot/rand/vm-lkp-wsx03-openwrt-i386/trinity.yaml'
	export testbox='vm-lkp-wsx03-openwrt-i386-23'
	export tbox_group='vm-lkp-wsx03-openwrt-i386'
	export kconfig='i386-randconfig-x0-11291749'
	export compiler='gcc-5'
	export queue='rand'
	export branch='linus/master'
	export commit='4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323'
	export submit_id='5a1e90790b9a934023057a16'
	export job_file='/lkp/scheduled/vm-lkp-wsx03-openwrt-i386-23/trinity-300s-openwrt-i386-2016-03-16.cgz-4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323-20171129-81955-j5mius-0.yaml'
	export id='0eb805331357745a39c19f4c6dd64961c3776a4b'
	export model='qemu-system-i386 -enable-kvm'
	export nr_vm=32
	export nr_cpu=1
	export memory='320M'
	export rootfs='openwrt-i386-2016-03-16.cgz'
	export hdd_partitions='/dev/vda'
	export swap_partitions='/dev/vdb'
	export need_kconfig='CONFIG_KVM_GUEST=y'
	export enqueue_time='2017-11-29 18:48:25 +0800'
	export _id='5a1e90790b9a934023057a16'
	export _rt='/result/trinity/300s/vm-lkp-wsx03-openwrt-i386/openwrt-i386-2016-03-16.cgz/i386-randconfig-x0-11291749/gcc-5/4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323'
	export user='lkp'
	export kernel='/pkg/linux/i386-randconfig-x0-11291749/gcc-5/4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323/vmlinuz-4.15.0-rc1'
	export result_root='/result/trinity/300s/vm-lkp-wsx03-openwrt-i386/openwrt-i386-2016-03-16.cgz/i386-randconfig-x0-11291749/gcc-5/4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323/0'
	export dequeue_time='2017-11-29 18:50:44 +0800'
	export LKP_SERVER='inn'
	export max_uptime=1500
	export initrd='/osimage/openwrt/openwrt-i386-2016-03-16.cgz'
	export bootloader_append='root=/dev/ram0
user=lkp
job=/lkp/scheduled/vm-lkp-wsx03-openwrt-i386-23/trinity-300s-openwrt-i386-2016-03-16.cgz-4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323-20171129-81955-j5mius-0.yaml
ARCH=i386
kconfig=i386-randconfig-x0-11291749
branch=linus/master
commit=4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323
BOOT_IMAGE=/pkg/linux/i386-randconfig-x0-11291749/gcc-5/4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323/vmlinuz-4.15.0-rc1
max_uptime=1500
RESULT_ROOT=/result/trinity/300s/vm-lkp-wsx03-openwrt-i386/openwrt-i386-2016-03-16.cgz/i386-randconfig-x0-11291749/gcc-5/4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323/0
LKP_SERVER=inn
debug
apic=debug
sysrq_always_enabled
rcupdate.rcu_cpu_stall_timeout=100
net.ifnames=0
printk.devkmsg=on
panic=-1
softlockup_panic=1
nmi_watchdog=panic
oops=panic
load_ramdisk=2
prompt_ramdisk=0
drbd.minor_count=8
systemd.log_level=err
ignore_loglevel
console=tty0
earlyprintk=ttyS0,115200
console=ttyS0,115200
vga=normal
rw'
	export bm_initrd='/osimage/pkg/debian-x86_64-2016-08-31.cgz/trinity-static-i386-x86_64-6ddabfd2_2017-11-10.cgz'
	export lkp_initrd='/lkp/lkp/lkp-i386.cgz'
	export site='inn'
	export LKP_CGI_PORT=80
	export LKP_CIFS_PORT=139
	export job_initrd='/lkp/scheduled/vm-lkp-wsx03-openwrt-i386-23/trinity-300s-openwrt-i386-2016-03-16.cgz-4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323-20171129-81955-j5mius-0.cgz'

	[ -n "$LKP_SRC" ] ||
	export LKP_SRC=/lkp/${user:-lkp}/src
}

run_job()
{
	echo $$ > $TMP/run-job.pid

	. $LKP_SRC/lib/http.sh
	. $LKP_SRC/lib/job.sh
	. $LKP_SRC/lib/env.sh

	export_top_env

	run_monitor $LKP_SRC/monitors/wrapper kmsg
	run_monitor $LKP_SRC/monitors/wrapper oom-killer
	run_monitor $LKP_SRC/monitors/plain/watchdog

	run_test $LKP_SRC/tests/wrapper trinity
}

extract_stats()
{
	$LKP_SRC/stats/wrapper kmsg

	$LKP_SRC/stats/wrapper time trinity.time
	$LKP_SRC/stats/wrapper time
	$LKP_SRC/stats/wrapper dmesg
	$LKP_SRC/stats/wrapper kmsg
	$LKP_SRC/stats/wrapper stderr
	$LKP_SRC/stats/wrapper last_state
}

"$@"