Linaro Git Browser
Code Review
Sign In
review.linaro.org
/
qa
/
test-definitions.git
/
refs/heads/kselftest-fix
/
.
/
automated
/
lib
/
py_test_lib.py
blob: 0d57005fc5b4734316e518c63a29039629c5a597 [
file
] [
log
] [
blame
]
Chase Qi
7d317f8
2017-02-08 08:29:48 +0800
[
diff
] [
blame
]
1
def
add_result
(
result_file
,
result
):
Benjamin Copeland
15d743e
2021-02-22 08:35:10 +0000
[
diff
] [
blame
]
2
with
open
(
result_file
,
"a"
)
as
f
:
3
f
.
write
(
"%s\n"
%
result
)