Skip to content

Commit

Permalink
tests: test_spawn: reduce stress limit to 100 to avoid kernel kill
Browse files Browse the repository at this point in the history
  • Loading branch information
doronz88 committed Feb 21, 2022
1 parent fdc2f4b commit e08135d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rpcclient/tests/test_spawn.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def test_spawn_sanity(client, argv, expected_stdout, errorcode):


def test_spawn_bad_value_stress(client):
for i in range(1000):
for i in range(100):
stdout = StringIO()
assert 256 == client.spawn(['/bin/ls', 'INVALID_PATH'], stdout=stdout, stdin=b'').error

Expand Down

0 comments on commit e08135d

Please sign in to comment.