Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cameo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Shervin Nourbakhsh
cameo
Commits
c108d0ec
Commit
c108d0ec
authored
8 years ago
by
legoc
Browse files
Options
Downloads
Patches
Plain Diff
added test very fast
parent
f069320c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/test/Makefile.am
+10
-1
10 additions, 1 deletion
src/test/Makefile.am
src/test/TestVeryFast.cpp
+36
-0
36 additions, 0 deletions
src/test/TestVeryFast.cpp
with
46 additions
and
1 deletion
src/test/Makefile.am
+
10
−
1
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
)
This diff is collapsed.
Click to expand it.
src/test/TestVeryFast.cpp
0 → 100644
+
36
−
0
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
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment