aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docker/features/testcases.yaml6
-rw-r--r--functest/ci/testcases.yaml6
2 files changed, 6 insertions, 6 deletions
diff --git a/docker/features/testcases.yaml b/docker/features/testcases.yaml
index 5da40c17a..6cccf02f6 100644
--- a/docker/features/testcases.yaml
+++ b/docker/features/testcases.yaml
@@ -33,7 +33,7 @@ tiers:
description: >-
Test suite from SDNVPN project.
dependencies:
- installer: '(fuel)|(apex)'
+ installer: ''
scenario: 'bgpvpn'
run:
module: 'sdnvpn.test.functest.run_sdnvpn_tests'
@@ -64,7 +64,7 @@ tiers:
the proper configuration and basic functionality of all the
collectd plugins as described in the Project Release Plan
dependencies:
- installer: '(apex)|(compass)'
+ installer: ''
scenario: 'bar'
run:
module: 'baro_tests.barometer'
@@ -80,7 +80,7 @@ tiers:
features are installed. It integrates some test suites from
upstream using Robot as the test framework.
dependencies:
- installer: 'apex'
+ installer: ''
scenario: 'odl.*-fdio'
run:
module: 'functest.opnfv_tests.sdn.odl.odl'
diff --git a/functest/ci/testcases.yaml b/functest/ci/testcases.yaml
index 2ca54b0bc..a215d35fb 100644
--- a/functest/ci/testcases.yaml
+++ b/functest/ci/testcases.yaml
@@ -284,7 +284,7 @@ tiers:
description: >-
Test suite from SDNVPN project.
dependencies:
- installer: '(fuel)|(apex)'
+ installer: ''
scenario: 'bgpvpn'
run:
module: 'sdnvpn.test.functest.run_sdnvpn_tests'
@@ -315,7 +315,7 @@ tiers:
the proper configuration and basic functionality of all the
collectd plugins as described in the Project Release Plan
dependencies:
- installer: '(apex)|(compass)'
+ installer: ''
scenario: 'bar'
run:
module: 'baro_tests.barometer'
@@ -331,7 +331,7 @@ tiers:
features are installed. It integrates some test suites from
upstream using Robot as the test framework.
dependencies:
- installer: 'apex'
+ installer: ''
scenario: 'odl.*-fdio'
run:
module: 'functest.opnfv_tests.sdn.odl.odl'
FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include <linux/linkage.h> #include <asm/alternative.h> #include <asm/assembler.h> #include <asm/cache.h> #include <asm/cpufeature.h> #include <asm/sysreg.h> /* * Copy to user space from a kernel buffer (alignment handled by the hardware) * * Parameters: * x0 - to * x1 - from * x2 - n * Returns: * x0 - bytes not copied */ .macro ldrb1 ptr, regB, val ldrb \ptr, [\regB], \val .endm .macro strb1 ptr, regB, val USER(9998f, strb \ptr, [\regB], \val) .endm .macro ldrh1 ptr, regB, val ldrh \ptr, [\regB], \val .endm .macro strh1 ptr, regB, val USER(9998f, strh \ptr, [\regB], \val) .endm .macro ldr1 ptr, regB, val ldr \ptr, [\regB], \val .endm .macro str1 ptr, regB, val USER(9998f, str \ptr, [\regB], \val) .endm .macro ldp1 ptr, regB, regC, val ldp \ptr, \regB, [\regC], \val .endm .macro stp1 ptr, regB, regC, val USER(9998f, stp \ptr, \regB, [\regC], \val) .endm end .req x5 ENTRY(__copy_to_user) ALTERNATIVE("nop", __stringify(SET_PSTATE_PAN(0)), ARM64_HAS_PAN, \ CONFIG_ARM64_PAN) add end, x0, x2 #include "copy_template.S" ALTERNATIVE("nop", __stringify(SET_PSTATE_PAN(1)), ARM64_HAS_PAN, \ CONFIG_ARM64_PAN) mov x0, #0 ret ENDPROC(__copy_to_user) .section .fixup,"ax" .align 2 9998: sub x0, end, dst // bytes not copied ret .previous