blob: 51fd8d3aea5f5b49f8db22d54a2192fe8b62af07 [file] [log] [blame]
A R Karthicka2e53d62016-02-19 17:38:30 -08001#!/bin/bash
2odir="$1"
3if [ -z "$odir" ]; then
4 odir = "./"
5fi
A R Karthick85ed65e2016-02-22 09:49:57 -08006
Chetan Gaonkereb2b24b2016-03-01 14:04:45 -08007##Generate TLS authentication Test state machine
A R Karthicka2e53d62016-02-19 17:38:30 -08008python yamlFsm.py -p TlsAuthHolder -f noseTlsAuthTest.yaml > ${odir}/noseTlsAuthHolder.py
Chetan Gaonkere2b78722016-02-22 17:27:09 -08009
10##Generate PAP authentication state machine
11python yamlFsm.py -p PAPAuthHolder -f nosePAPTest.yaml > ${odir}/nosePAPAuthHolder.py
Chetan Gaonkereb2b24b2016-03-01 14:04:45 -080012
13
14##Generate DNS test state machine
15python yamlFsm.py -p DnsHolder -f noseDnsTest.yaml > ${odir}/noseDnsHolder.py
16