Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Cameo
cameo
Commits
c108d0ec
Commit
c108d0ec
authored
Jul 05, 2016
by
legoc
Browse files
added test very fast
parent
f069320c
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/test/Makefile.am
View file @
c108d0ec
...
...
@@ -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)
src/test/TestVeryFast.cpp
0 → 100644
View file @
c108d0ec
/*
* 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
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment