This test is prompted by incorrect multilib selection for Cortex-M4 (armv7e-m subarchitecture) in Zephyr SDK 0.8.1 toolchain. The idea is do an operation which guaranteedly results in a call to a support routine in libgcc, which is part of multilib set. Long long division is used as such, with a fault produced (see README) when built for BOARD=frdm_k64f. This test now passed with SDK 0.8.2 for frdm_k64f, but is added in the hope of preventing/easing diagnosis of future regressions. Change-Id: I07f01b0e70921703fc0d261fc6c48a2b13b29873 Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
35 lines
864 B
C
35 lines
864 B
C
/*
|
|
* Copyright (c) 2016 Linaro Ltd.
|
|
*
|
|
* Licensed 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.
|
|
*/
|
|
|
|
#include <zephyr.h>
|
|
#include <errno.h>
|
|
#include <tc_util.h>
|
|
|
|
void main(void)
|
|
{
|
|
volatile long long a = 100;
|
|
volatile long long b = 3;
|
|
volatile long long c = a / b;
|
|
int rv = TC_PASS;
|
|
|
|
if (c != 33) {
|
|
rv = TC_FAIL;
|
|
}
|
|
|
|
TC_END_RESULT(rv);
|
|
TC_END_REPORT(rv);
|
|
}
|