Remove obsolete files
diff --git a/profiles/default.py b/profiles/default.py
deleted file mode 100644
index 592797e..0000000
--- a/profiles/default.py
+++ /dev/null
@@ -1,13 +0,0 @@
-"""
-Default profile
-
-No tests skipped.
-"""
-
-#@var skip_test_list The list of tests to skip for this run
-skip_test_list = [
-]
-
-#@var run_test_list List of tests to run which would normally be skipped
-run_test_list = [
-]
diff --git a/profiles/example.py b/profiles/example.py
deleted file mode 100644
index 0928119..0000000
--- a/profiles/example.py
+++ /dev/null
@@ -1,35 +0,0 @@
-"""
-Sample profile
-
-A profile determines run specific behavior. It is meant to capture
-variations between different switch targets.
-
-A profile defines two target specific variables.
-
-1. A set of tests to skip
-
-TO BE IMPLEMENTED:
-
-2. A set of tests to run (overriding the default "skip" priority)
-optionally specifying a test parameters specific to the test run
-
-@todo Allow a test to be run multiple times with different params
-"""
-
-#@var skip_test_list The list of tests to skip for this run
-skip_test_list = []
-
-# A list of test cases
-#@var run_test_list List of tests to run which would normally be skipped
-run_test_list = []
-
-#
-# Ideally, we should allow parameters to be specified
-#
-# run_test_list = (
-# testcase = [dict(param1), dict(param2), ...],
-# )
-#
-# for test_dict in profile.run_test_list:
-# for test_name, test_params in test_dict.items():
-# ...
diff --git a/profiles/noing.py b/profiles/noing.py
deleted file mode 100644
index 4389dd4..0000000
--- a/profiles/noing.py
+++ /dev/null
@@ -1,24 +0,0 @@
-"""
-No-ingress action profile
-
-Profile for switch that does not support the IN_PORT port
-in the output action.
-
-We also don't run the port config modify test for this profile.
-"""
-
-#@var skip_test_list The list of tests to skip for this run
-skip_test_list = [
- "PortConfigMod",
- "FloodMinusPort",
- "ModifyL2DstIngressMC",
- "ModifyL2DstIngress",
- "DirectMC",
- "AllPlusIngress",
- "FloodPlusIngress",
- "ModifyVIDToIngress",
-]
-
-#@var run_test_list List of tests to run which would normally be skipped
-run_test_list = [
-]