Skip to content

Commit

Permalink
Fixed perf_igor to understand whether we're in capability-support mod…
Browse files Browse the repository at this point in the history
…e or not
  • Loading branch information
jackjansen committed Feb 4, 2019
1 parent cde088c commit b41eb4f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/perf_igor.py
Expand Up @@ -39,7 +39,7 @@ class IgorPerf(IgorSetupAndControl):
igorPort = 19433
igorProtocol = "http"
igorVarArgs = {}
igorServerArgs = []
igorServerArgs = ["--noCapabilities"]
igorUseCapabilities = False

@classmethod
Expand Down Expand Up @@ -259,10 +259,12 @@ class IgorPerfHttps(IgorPerf):
igorDir = os.path.join(FIXTURES, 'testIgorHttps')
igorPort = 19533
igorProtocol = "https"
igorServerArgs = ["--noCapabilities"]

class IgorPerfCaps(IgorPerfHttps):
class IgorPerfCaps(IgorPerf):
igorDir = os.path.join(FIXTURES, 'testIgorCaps')
igorPort = 19633
igorProtocol = "https"
igorServerArgs = ["--capabilities"]
igorUseCapabilities = True

Expand Down

0 comments on commit b41eb4f

Please sign in to comment.