mirror of
https://github.com/QuantumLeaps/qpc.git
synced 2025-01-28 07:03:10 +08:00
d0160c8c7b
major release 7.0.0 release candidate 1
127 lines
4.0 KiB
C
127 lines
4.0 KiB
C
/**
|
|
* @file
|
|
* @brief QUIT (QP Unit Internal Test) port to Win32 with GNU or VisualC++
|
|
* @cond
|
|
******************************************************************************
|
|
* Last updated for version 6.9.2
|
|
* Last updated on 2021-02-12
|
|
*
|
|
* Q u a n t u m L e a P s
|
|
* ------------------------
|
|
* Modern Embedded Software
|
|
*
|
|
* Copyright (C) 2005 Quantum Leaps, LLC. All rights reserved.
|
|
*
|
|
* This program is open source software: you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as published
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Alternatively, this program may be distributed and modified under the
|
|
* terms of Quantum Leaps commercial licenses, which expressly supersede
|
|
* the GNU General Public License and are specifically designed for
|
|
* licensees interested in retaining the proprietary status of their code.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or 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 <www.gnu.org/licenses>.
|
|
*
|
|
* Contact information:
|
|
* <www.state-machine.com/licensing>
|
|
* <info@state-machine.com>
|
|
******************************************************************************
|
|
* @endcond
|
|
*/
|
|
#include "quit.h"
|
|
|
|
#include <stdio.h> /* for printf_s() */
|
|
#include <stdlib.h> /* for exit() */
|
|
|
|
#ifndef NDEBUG
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h> /* for DebugBreak */
|
|
#endif
|
|
|
|
//Q_DEFINE_THIS_MODULE("quit_port")
|
|
|
|
/* Global objects ==========================================================*/
|
|
uint8_t volatile QF_intNest;
|
|
|
|
/*..........................................................................*/
|
|
static int l_test_count;
|
|
|
|
/*..........................................................................*/
|
|
void QUIT_fail_(char const *cond, char const *file, int line) {
|
|
printf_s(" FAILED in %s:%d\n"
|
|
"%s\n"
|
|
"---------------------------------------------\n"
|
|
"%d test(s)\n"
|
|
"FAILED\n",
|
|
file, line, cond, l_test_count);
|
|
|
|
#ifndef NDEBUG
|
|
DebugBreak();
|
|
#endif
|
|
|
|
exit(l_test_count);
|
|
}
|
|
/*..........................................................................*/
|
|
void TEST(char const *title) {
|
|
if (l_test_count > 0) {
|
|
printf_s(" PASSED\n");
|
|
}
|
|
printf_s("test: \"%s\" ...", title);
|
|
++l_test_count;
|
|
}
|
|
/*..........................................................................*/
|
|
int main(void) {
|
|
printf_s("\n%s\n", "QP Unit Internal Testing -- QUIT");
|
|
|
|
onRunTests();
|
|
|
|
if (l_test_count > 0) {
|
|
printf_s("%s\n", " PASSED");
|
|
}
|
|
printf_s("---------------------------------------------\n"
|
|
"%d test(s)\nOK\n", l_test_count);
|
|
|
|
return 0; /* success */
|
|
}
|
|
|
|
/*==========================================================================*/
|
|
Q_NORETURN Q_onAssert(char const * const module, int_t const location) {
|
|
QUIT_fail_("Q_onAssert", module, location);
|
|
for (;;) { /* explicitly make it "noreturn" */
|
|
}
|
|
}
|
|
|
|
/*==========================================================================*/
|
|
#ifdef Q_SPY
|
|
/*..........................................................................*/
|
|
void QS_onCleanup(void) {
|
|
}
|
|
/*..........................................................................*/
|
|
void QS_onReset(void) {
|
|
}
|
|
/*..........................................................................*/
|
|
void QS_onFlush(void) {
|
|
}
|
|
/*..........................................................................*/
|
|
QSTimeCtr QS_onGetTime(void) {
|
|
return (QSTimeCtr)0U;
|
|
}
|
|
/*..........................................................................*/
|
|
void QS_onCommand(uint8_t cmdId, uint32_t param1,
|
|
uint32_t param2, uint32_t param3)
|
|
{
|
|
(void)cmdId;
|
|
(void)param1;
|
|
(void)param2;
|
|
(void)param3;
|
|
}
|
|
|
|
#endif |