Skip to content
Snippets Groups Projects
Commit c108d0ec authored by legoc's avatar legoc
Browse files

added test very fast

parent f069320c
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,8 @@ bin_PROGRAMS = \
testrequesterandresponder \
testcancel \
testtimeout \
testconnectionchecker
testconnectionchecker \
testveryfast
testcameo_SOURCES = \
......@@ -145,3 +146,11 @@ testconnectionchecker_SOURCES = \
testconnectionchecker_CPPFLAGS = $(CAMEO_CXXFLAGS)
testconnectionchecker_LDFLAGS = $(CAMEO_LDFLAGS)
testconnectionchecker_LDADD = ../libcameo.la $(CAMEO_LIBS)
testveryfast_SOURCES = \
TestVeryFast.cpp
testveryfast_CPPFLAGS = $(CAMEO_CXXFLAGS)
testveryfast_LDFLAGS = $(CAMEO_LDFLAGS)
testveryfast_LDADD = ../libcameo.la $(CAMEO_LIBS)
/*
* Copyright 2015 Institut Laue-Langevin
*
* Licensed under the EUPL, Version 1.1 only (the "License");
* You may not use this work except in compliance with the Licence.
* You may obtain a copy of the Licence at:
*
* http://joinup.ec.europa.eu/software/page/eupl
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the Licence is distributed on an "AS IS" basis,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the Licence for the specific language governing permissions and
* limitations under the Licence.
*/
#include <iostream>
#include <string>
#include <vector>
#include <sstream>
#include "../cameo/cameo.h"
using namespace std;
using namespace cameo;
int main(int argc, char *argv[]) {
cout << "Veryfast" << endl;
int* i = 0;
*i = 0;
cout << "Veryfast end" << endl;
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment