From 08b83c8b45ed29e26ae420ebd38daf2f2de845c0 Mon Sep 17 00:00:00 2001 From: Alexis Campailla Date: Tue, 18 Aug 2015 14:04:14 +0200 Subject: [PATCH] test: add test configuration templates MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Template configuration files for marking tests as flaky. PR-URL: https://github.com/nodejs/node/pull/2424 Reviewed-By: Ben Noordhuis Reviewed-By: João Reis Reviewed-By: Sakthipriyan Vairamani --- test/message/message.status | 18 ++++++++++++++++++ test/parallel/parallel.status | 18 ++++++++++++++++++ test/sequential/sequential.status | 18 ++++++++++++++++++ 3 files changed, 54 insertions(+) create mode 100644 test/message/message.status create mode 100644 test/parallel/parallel.status create mode 100644 test/sequential/sequential.status diff --git a/test/message/message.status b/test/message/message.status new file mode 100644 index 00000000000000..1a4a0e3adc2727 --- /dev/null +++ b/test/message/message.status @@ -0,0 +1,18 @@ +prefix message + +# To mark a test as flaky, list the test name in the appropriate section +# below, without ".js", followed by ": PASS,FLAKY". Example: +# sample-test : PASS,FLAKY + +[true] # This section applies to all platforms + +[$system==win32] + +[$system==linux] + +[$system==macos] + +[$system==solaris] # Also applies to SmartOS + +[$system==freebsd] + diff --git a/test/parallel/parallel.status b/test/parallel/parallel.status new file mode 100644 index 00000000000000..e19754834ef3a6 --- /dev/null +++ b/test/parallel/parallel.status @@ -0,0 +1,18 @@ +prefix parallel + +# To mark a test as flaky, list the test name in the appropriate section +# below, without ".js", followed by ": PASS,FLAKY". Example: +# sample-test : PASS,FLAKY + +[true] # This section applies to all platforms + +[$system==win32] + +[$system==linux] + +[$system==macos] + +[$system==solaris] # Also applies to SmartOS + +[$system==freebsd] + diff --git a/test/sequential/sequential.status b/test/sequential/sequential.status new file mode 100644 index 00000000000000..3ff77992f15543 --- /dev/null +++ b/test/sequential/sequential.status @@ -0,0 +1,18 @@ +prefix sequential + +# To mark a test as flaky, list the test name in the appropriate section +# below, without ".js", followed by ": PASS,FLAKY". Example: +# sample-test : PASS,FLAKY + +[true] # This section applies to all platforms + +[$system==win32] + +[$system==linux] + +[$system==macos] + +[$system==solaris] # Also applies to SmartOS + +[$system==freebsd] +