Skip to content

Commit d347ce0

Browse files
committed
Tweaks to make it work at DLS
1 parent ad39462 commit d347ce0

File tree

4 files changed

+13
-14
lines changed

4 files changed

+13
-14
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[build-system]
22
requires = ["setuptools", "wheel", "setuptools_dso", "epicscorelibs>=7.0.4.99.1"]
3-
build-backend = "setuptools.build_meta"
3+
build-backend = "setuptools.build_meta:__legacy__"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def _add_file(f):
7474
],
7575
dsos = ['epicscorelibs.lib.dbCore', 'epicscorelibs.lib.Com'],
7676
define_macros = get_config_var('CPPFLAGS'),
77-
extra_compile_args = get_config_var('CFLAGS'),
77+
extra_compile_args = get_config_var('CFLAGS') + ["-std=c99"],
7878
extra_link_args = get_config_var('LDFLAGS'),
7979
)
8080

tests/test_asyncio.py

+8-6
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,12 @@ def asyncio_ioc():
1919
cmd, stdin=subprocess.PIPE,
2020
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
2121
yield proc
22-
proc.kill()
23-
out, err = proc.communicate()
24-
print(out.decode())
25-
print(err.decode(), file=sys.stderr)
22+
if proc.returncode is None:
23+
# still running, kill it and print the output
24+
proc.kill()
25+
out, err = proc.communicate()
26+
print(out.decode())
27+
print(err.decode(), file=sys.stderr)
2628

2729

2830
@pytest.mark.asyncio
@@ -44,9 +46,9 @@ async def test_asyncio_ioc(asyncio_ioc):
4446
# AO
4547
assert await caget(PV_PREFIX + ":AO2") == 12.45
4648
await caput(PV_PREFIX + ":AO2", 3.56, wait=True)
47-
await asyncio.sleep(0.3)
49+
await asyncio.sleep(0.1)
4850
assert await caget(PV_PREFIX + ":AI") == 12.34
49-
await asyncio.sleep(0.5)
51+
await asyncio.sleep(0.6)
5052
assert await caget(PV_PREFIX + ":AI") == 3.56
5153
# Wait for a bit longer for the print output to flush
5254
await asyncio.sleep(2)

tests/test_cothread.py

+3-6
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,13 @@ def cothread_ioc():
2121
cmd, stdin=subprocess.PIPE,
2222
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
2323
yield proc
24-
# This has to work on Python2 and 3 so can't rely on communicate to
25-
# produce stdout and stderr if we already closed the process
26-
try:
24+
if proc.returncode is None:
25+
# still running, kill it and print the output
2726
proc.kill()
2827
out, err = proc.communicate()
2928
print(out.decode())
3029
print(err.decode())
31-
except OSError:
32-
# Doesn't matter if its already stopped
33-
pass
30+
3431

3532

3633
def test_cothread_ioc(cothread_ioc):

0 commit comments

Comments
 (0)