diff options
author | Sverker Eriksson <[email protected]> | 2017-12-13 15:07:22 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2017-12-13 15:07:22 +0100 |
commit | f0cf0f34e72db49c9b6011a3379b300fe66035fd (patch) | |
tree | f9f71c11f1caeb84787afd9b9d25b51d33be396a | |
parent | a72a33e51218b1584f87629a9725665c22f9eb09 (diff) | |
download | otp-f0cf0f34e72db49c9b6011a3379b300fe66035fd.tar.gz otp-f0cf0f34e72db49c9b6011a3379b300fe66035fd.tar.bz2 otp-f0cf0f34e72db49c9b6011a3379b300fe66035fd.zip |
erts: Add core dumps from valgrind to z_SUITE search
-rw-r--r-- | erts/test/z_SUITE.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/erts/test/z_SUITE.erl b/erts/test/z_SUITE.erl index d474c71c4f..229a47e1aa 100644 --- a/erts/test/z_SUITE.erl +++ b/erts/test/z_SUITE.erl @@ -271,6 +271,8 @@ core_file_search(#core_search_conf{search_dir = Base, core_cand(Conf, Core, Cores); "core." ++ _ -> core_cand(Conf, Core, Cores); + "vgcore." ++ _ -> % valgrind + core_cand(Conf, Core, Cores); Bin when is_binary(Bin) -> %Icky filename; ignore Cores; BName -> |