diff --git a/RFCs/010-MapNotRunnableToFailed-Attribute.md b/RFCs/010-MapNotRunnableToFailed-Attribute.md
new file mode 100644
index 0000000..d522a2f
--- /dev/null
+++ b/RFCs/010-MapNotRunnableToFailed-Attribute.md
@@ -0,0 +1,20 @@
+# RFC 010 - Map not runnable tests to failed via runsettings
+
+## Motivation
+Some tests which have incompatible signature and cannot be executed are marked as skipped with warnings being thrown.
+User should be able to configure to fail a test if it is not runnable.
+
+### Proposed solution
+Make this setting configurable via MapNotRunnableToFailed tag which is part of the adapter node in the runsettings.
+
+Here is a sample runsettings:
+```xml
+
+
+ true
+
+
+```
+
+### Honoring the settings
+- If no settings are provided in runsettings, default MapNotRunnableToFailed is set to false. This has been kept in regard with backward compatibility.
\ No newline at end of file
diff --git a/docs/deltaWithMSTestV1.md b/docs/deltaWithMSTestV1.md
index ee1962a..740b436 100644
--- a/docs/deltaWithMSTestV1.md
+++ b/docs/deltaWithMSTestV1.md
@@ -22,6 +22,14 @@ Listed are the difference in behaviour of MSTest V2 w.r.t MSTest V1 :
```
11. The TestCleanup method on a TestClass is invoked even if its corresponding TestInitialize method fails. See [#250](https://github.com/Microsoft/testfx/issues/250) for details.
12. The time taken by `AssemblyInitialize` and `ClassInitialize` are not considered as part of a tests duration thereby limiting their impact on a test timing out.
+13. Test which are not runnable can be configured to be marked as failed via MapNotRunnableToFailed tag which is part of the adapter node in the runsettings.
+ ```
+
+
+ true
+
+
+```
Here are the features that are not supported:
1. Tests cannot be included into an "Ordered Test".