Skip to content

Commit

Permalink
test building and running a simple initialize/terminate program
Browse files Browse the repository at this point in the history
  • Loading branch information
RossBencina committed Aug 23, 2024
1 parent 03e4712 commit ced21c9
Show file tree
Hide file tree
Showing 2 changed files with 90 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/autotools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ on:
pull_request:
branches: [ master ]

env:
PORTAUDIO_INSTALL_DIR: /home/runner/.local
# gcc environment variables:
C_INCLUDE_PATH: /home/runner/.local/include
LIBRARY_PATH: /home/runner/.local/lib
LD_PATH: /home/runner/.local/lib

jobs:
build-autotools:

Expand All @@ -15,10 +22,16 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: configure
run: ./configure --prefix=/home/runner/.local
run: ./configure --prefix=$PORTAUDIO_INSTALL_DIR
- name: make
run: make
- name: install
run: make install
- name: list install dirs
run: ls $PORTAUDIO_INSTALL_DIR $PORTAUDIO_INSTALL_DIR/include $PORTAUDIO_INSTALL_DIR/lib
- name: build patest_init.c to check install
run: gcc -o patest_init ./test/patest_init.c -lportaudio
- name: run patest_init
run: ./patest_init
- name: uninstall
run: make uninstall
76 changes: 76 additions & 0 deletions test/patest_init.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
/** @file patest_init.c
@ingroup test_src
@brief Initialize and terminate PortAudio
@author Ross Bencina
*/
/*
* $Id$
*
* This program uses the PortAudio Portable Audio Library.
* For more information see: http://www.portaudio.com
* Copyright (c) 1999-2000 Ross Bencina and Phil Burk
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files
* (the "Software"), to deal in the Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

/*
* The text above constitutes the entire PortAudio license; however,
* the PortAudio community also makes the following non-binding requests:
*
* Any person wishing to distribute modifications to the Software is
* requested to send the modifications to the original developer so that
* they can be incorporated into the canonical version. It is also
* requested that these non-binding requests be included along with the
* license above.
*/

#include <stdio.h>

#include "portaudio.h"

int main(void);
int main(void)
{
PaError err;

printf("PortAudio Test: initialize and terminate.\n");

err = Pa_Initialize();
if( err != paNoError ) {
fprintf( stderr, "An error occurred while initializing PortAudio\n" );
goto error;
}

err = Pa_Terminate();
if( err != paNoError ) {
fprintf( stderr, "An error occurred while terminating PortAudio\n" );
goto error;
}

printf("Test completed without error.\n");
return err;

error:
Pa_Terminate();

fprintf( stderr, "Error number: %d\n", err );
fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
return err;
}

0 comments on commit ced21c9

Please sign in to comment.