From fa39a0c9ab8a545435835662ef7cb3dca86acf49 Mon Sep 17 00:00:00 2001 From: Jmaxxz Date: Tue, 2 Oct 2018 12:40:44 -0500 Subject: [PATCH] Fix markdown syntax in readme `####` must be followed by a space in order to be considered a formatting token. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 678ae8c..acf70ab 100644 --- a/README.md +++ b/README.md @@ -14,10 +14,10 @@ Quick Start ----------- There are two main sub directories in the compiler-tests directory. The descriptions of what they contain are listed below. Overtime we expect to open more tests in these directories as well as add new areas of testing. -####EH (C++EH) +#### EH (C++EH) Only one test is included here now, ihateeh.cxx. This tests object destructor semantics on Windows. Compile the file with usual flag combinations (MSVC) and compare with the output file ihateeh.out.correct. -####SEH +#### SEH The main tests in this directory are sehframes.cpp which tests various funclet frames, and xcpt4u.c which is a large collection of SEH torture tests. This last test is one of the main litmus tests used to verify that a compiler supports SEH suffiently to be used in the Windows kernel. Remaining sehxxxx.c tests are particular break outs from xcpt4u.c for ease of debugging. - Run the runtest.cmd in the seh directory to build the tests with MSVC.