c9eef2d697
Most tools used for compliance and SBOM generation use SPDX identifiers This change brings us a step closer to an easy SBOM generation. Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
62 lines
2.1 KiB
Python
62 lines
2.1 KiB
Python
#!/usr/bin/python3
|
|
############################################################################
|
|
# tools/ci/testrun/script/test_framework/test_cmocka.py
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
# this work for additional information regarding copyright ownership. The
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
# "License"); you may not use this file except in compliance with the
|
|
# License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
#
|
|
############################################################################
|
|
# encoding: utf-8
|
|
|
|
import os
|
|
|
|
import pytest
|
|
|
|
pytestmark = [pytest.mark.common, pytest.mark.rv_virt]
|
|
|
|
cmocka_list_start = "cmocka_list_start"
|
|
cmocka_list_end = "cmocka_list_end"
|
|
cmocka_test_start = "cmocka_test_start"
|
|
cmocka_test_end = "cmocka_test_end"
|
|
|
|
|
|
@pytest.mark.run(order=1)
|
|
def test_cmocka(p):
|
|
if p.board == "sim":
|
|
os.mkdir("./test")
|
|
ret = p.sendCommand("mount -t hostfs -o fs=./test /data")
|
|
if p.board == "rv-virt":
|
|
ret = p.sendCommand("mount -t vfat /dev/virtblk0 /data")
|
|
|
|
p.sendCommand(f"echo {cmocka_list_start}")
|
|
p.sendCommand("cmocka --list", "Cmocka Test Completed")
|
|
p.sendCommand(f"echo {cmocka_list_end}")
|
|
|
|
p.sendCommand(f"echo {cmocka_test_start}")
|
|
ret = p.sendCommand(
|
|
"cmocka --skip test_case_posix_timer|test_case_oneshot|write_default|read_default|burst_test|gpiotest01|"
|
|
"test_playback.*|test_interaction.*|test_stress.*|test_capture.*",
|
|
"Cmocka Test Completed",
|
|
timeout=1200,
|
|
)
|
|
p.sendCommand(f"echo {cmocka_test_end}")
|
|
|
|
if p.board == "sim":
|
|
os.rmdir("./test")
|
|
|
|
assert ret == 0
|